@codevor/js-is-type

🎯Type-checking for 'Primitive' JS Types made easy!

Usage no npm install needed!

<script type="module">
  import codevorJsIsType from 'https://cdn.skypack.dev/@codevor/js-is-type';
</script>

README

🎯Type-checking for 'Primitive' JS Types

License Travis CI Coverage Status Commitizen

Type-check for 'Primitive' types in JavaScript are always something to take care when receiving/sending a payload from/to Server/Client application. If you ever wonder how to do this you can sure use typeof and make the check by yourself. Or you can user 🎯js-is-type!

The usage is simple and verbose. The tests has full coverage and you can use without a doubt.

Available Types

  • isArray()
  • isBoolean()
  • isFunction()
  • isObject() (Remember: in JS, Arrays are Objects!)
  • isString()
  • isUndefined()

Installation

js-is-type is available on npm/yarn:

$ npm install @codevor/js-is-type --save
$ yarn add @codevor/js-is-type

Usage

With ES6/import

import { isArray } from '@codevor/js-is-type';

const names = ['Alice', 'Bob'];

isArray(names); // => true

With require

const isArray = require('@codevor/js-is-type').isArray;

const names = ['Alice', 'Bob'];

isArray(names); // => true

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Changelog

This project adheres to Semantic Versioning. Every release, along with the migration instructions, is documented on the Github Releases page.

Bugs and Sugestions

Report bugs or do suggestions using the issues.

License

MIT License © Codevor