A super-simple <1KB type checking module for JavaScript that returns a Boolean
for each type check.
axis.isArray([]); // true
axis.isObject({}); // true
axis.isString(''); // true
axis.isDate(new Date()); // true
axis.isRegExp(/test/i); // true
axis.isFunction(function () {}); // true
axis.isBoolean(true); // true
axis.isNumber(1); // true
axis.isNull(null); // true
axis.isUndefined(); // true
npm install axis.js
Use the repository hook:
bower install https://github.com/toddmotto/axis.git
Ensure you're using the files from the dist
directory (contains compiled production-ready code). Ensure you place the script before the closing </body>
tag.
<body>
<!-- html above -->
<script src="dist/axis.js"></script>
<script>
// axis module available
</script>
</body>
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Gulp.
- 1.2.1
- Add
main
inpackage.json
- Add
- 1.2.0
- Small refactoring
- 1.1.0
- Rewrite to dynamically create functions, thanks jeremenichelli
- 1.0.0
- Initial release