Skip to content

๐Ÿ‘บ weak but accurate type checking that returns a string representation of input's type

License

Notifications You must be signed in to change notification settings

moimikey/typeov

Folders and files

NameName
Last commit message
Last commit date

Latest commit

74c9ae4 ยท Nov 30, 2020
Nov 30, 2020
Nov 30, 2020
Mar 18, 2016
Nov 30, 2020
Aug 3, 2018
Aug 3, 2018
Nov 30, 2020
Mar 18, 2016
Aug 3, 2018
Nov 30, 2020
Nov 30, 2020

Repository files navigation

typeov Build Status

Version Downloads Deps DevDeps

Install (~1900 bytes)

npm install --save typeov
yarn add typeov

Usage

import { typeov } from 'typeov'

const a = []

if (typeov(a) === 'array') {
  // true => array
}

if (typeof(a) === 'array') {
  // false => object
}
var typeov = require('typeov').typeov

var b = Math.PI

if (typeov(b) === 'float') {
  // true
}
const jsonString = '[{"version":"1.2.3"}]'
const isJSON = typeov(jsonString) === 'json' // true

Possible return values

  • array
  • boolean
  • buffer
  • float
  • function
  • infinity
  • json
  • map
  • null
  • number
  • object
  • promise
  • regexp
  • set
  • stream
  • symbol
  • undefined
  • weakmap
  • weakset

Notes

Be mindful of what you're checking

> typeov(Symbol)
'function'
> typeov(Symbol())
'symbol'
> typeov(Promise)
'function'
> typeov(new Promise(() => {}))
'promise'
> typeov(Promise.resolve(true))
'promise'

License

License