├── .gitignore ├── LICENSE ├── README.md ├── lib └── 2FA.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simontabor/2fa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simontabor/2fa/HEAD/README.md -------------------------------------------------------------------------------- /lib/2FA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simontabor/2fa/HEAD/lib/2FA.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simontabor/2fa/HEAD/package.json --------------------------------------------------------------------------------