├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R └── validate_address_usps.R ├── README.md └── rusps.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansthompson/rusps/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansthompson/rusps/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansthompson/rusps/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansthompson/rusps/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | export(validate_address_usps) -------------------------------------------------------------------------------- /R/validate_address_usps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansthompson/rusps/HEAD/R/validate_address_usps.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansthompson/rusps/HEAD/README.md -------------------------------------------------------------------------------- /rusps.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansthompson/rusps/HEAD/rusps.Rproj --------------------------------------------------------------------------------