├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R └── core.R ├── README.Rmd ├── README.md └── man ├── figures ├── README-unnamed-chunk-6-1.png ├── logo.png └── white.png └── str_capture.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | # fugly 0.1.0 2021-03-19 2 | 3 | * Initial release 4 | -------------------------------------------------------------------------------- /R/core.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/R/core.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/README.md -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/man/figures/white.png -------------------------------------------------------------------------------- /man/str_capture.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/fugly/HEAD/man/str_capture.Rd --------------------------------------------------------------------------------