@codevor/js-is-type

0.2.0 • Public • Published

🎯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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.2.0
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.2.0
    0
  • 0.1.1
    0
  • 0.1.0
    0

Package Sidebar

Install

npm i @codevor/js-is-type

Weekly Downloads

0

Version

0.2.0

License

MIT

Unpacked Size

23.2 kB

Total Files

9

Last publish

Collaborators

  • helderberto
  • helderburato
  • caiangums