├── .gitignore ├── .nowignore ├── LICENSE.md ├── README.md ├── api └── anonymize.js ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .DS_Store 4 | .now -------------------------------------------------------------------------------- /.nowignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-anonymizomatic/HEAD/.nowignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-anonymizomatic/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-anonymizomatic/HEAD/README.md -------------------------------------------------------------------------------- /api/anonymize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-anonymizomatic/HEAD/api/anonymize.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-anonymizomatic/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/withspectrum/micro-anonymizomatic/HEAD/yarn.lock --------------------------------------------------------------------------------