ts-util-is
TypeScript icon, indicating that this package has built-in type declarations

2.1.0 • Public • Published

NPM Version CI codecov

ts-util-is

TypeScript typeof utility helper with no dependencies. Provides type guards for all common types.

Installation

npm install ts-util-is

Usage

Import everything:

import * as util from 'ts-util-is';

const value: string | string[] = 'hey there';

if (util.isArray(value)) {
  console.log(value.split(' ')); // `value` is string[]
}

Import only what you need:

import { isArray, isString } from 'ts-util-is';

const value: string | string[] = 'hello again';

if (isArray(value)) {
  console.log(value.split(' ')); // `value` is string
}

Methods

  • isArray()
  • isBase64()
  • isBoolean()
  • isDate()
  • isDateValid()
  • isDefined()
  • isError()
  • isFunction()
  • isGuid()
  • isInfinity()
  • isNegativeNumber()
  • isNull()
  • isNil()
  • isNonEmptyString()
  • isNonZeroNumber()
  • isNumber()
  • isObject()
  • isPlainObject()
  • isPositiveNumber()
  • isRegExp()
  • isString()
  • isSymbol()
  • isUndefined()
  • isInstance()

Package Sidebar

Install

npm i ts-util-is

Weekly Downloads

9,168

Version

2.1.0

License

MIT

Unpacked Size

25.2 kB

Total Files

11

Last publish

Collaborators

  • justinlettau