├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test └── protectedCookie.spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log* 2 | node_modules 3 | .npm 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankouskia/protected-cookie/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankouskia/protected-cookie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankouskia/protected-cookie/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankouskia/protected-cookie/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankouskia/protected-cookie/HEAD/package.json -------------------------------------------------------------------------------- /test/protectedCookie.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yankouskia/protected-cookie/HEAD/test/protectedCookie.spec.js --------------------------------------------------------------------------------