├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── test └── basic.test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosano-eu/token-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .gitignore 3 | .editorconfig 4 | test/ 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosano-eu/token-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosano-eu/token-generator/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosano-eu/token-generator/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosano-eu/token-generator/HEAD/package.json -------------------------------------------------------------------------------- /test/basic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mosano-eu/token-generator/HEAD/test/basic.test.js --------------------------------------------------------------------------------