├── .gitignore ├── LICENSE ├── README.md ├── examples ├── double.js ├── map.js ├── map_double.js └── obj.js ├── guard.js ├── package.json └── test └── test_guardian.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-tuells/guard-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-tuells/guard-js/HEAD/README.md -------------------------------------------------------------------------------- /examples/double.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-tuells/guard-js/HEAD/examples/double.js -------------------------------------------------------------------------------- /examples/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-tuells/guard-js/HEAD/examples/map.js -------------------------------------------------------------------------------- /examples/map_double.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-tuells/guard-js/HEAD/examples/map_double.js -------------------------------------------------------------------------------- /examples/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-tuells/guard-js/HEAD/examples/obj.js -------------------------------------------------------------------------------- /guard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-tuells/guard-js/HEAD/guard.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-tuells/guard-js/HEAD/package.json -------------------------------------------------------------------------------- /test/test_guardian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andres-tuells/guard-js/HEAD/test/test_guardian.js --------------------------------------------------------------------------------