├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── gulpfile.js ├── index.js ├── package.json └── test ├── shorthand.js ├── test.js └── typeify ├── array.js ├── boolean.js ├── date.js ├── limitTypes.js ├── number.js ├── object.js └── string.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/package.json -------------------------------------------------------------------------------- /test/shorthand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/test/shorthand.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/test/test.js -------------------------------------------------------------------------------- /test/typeify/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/test/typeify/array.js -------------------------------------------------------------------------------- /test/typeify/boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/test/typeify/boolean.js -------------------------------------------------------------------------------- /test/typeify/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/test/typeify/date.js -------------------------------------------------------------------------------- /test/typeify/limitTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/test/typeify/limitTypes.js -------------------------------------------------------------------------------- /test/typeify/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/test/typeify/number.js -------------------------------------------------------------------------------- /test/typeify/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/test/typeify/object.js -------------------------------------------------------------------------------- /test/typeify/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiddentao/sjv/HEAD/test/typeify/string.js --------------------------------------------------------------------------------