1.1.3 • Published 2 years ago

@craftworks/craftworks-library-js v1.1.3

Weekly downloads
134
License
MIT
Repository
github
Last release
2 years ago

@craftworks/craftworks-library-js

NPM version Downloads

A JavaScript library used at craftworks

Installation

npm install --save @craftworks/craftworks-library-js

API

/**
* Checks if a value is defined
*
* A value is not defined if
*   value === undefined || value === null
*/
function isDefined<Type>(value: Type | undefined | null): value is Type;

/**
 * Checks if a value is a number
 *
 * According to the JavaScript definition, NaN and Infinity are considered valid numbers
 */
function isNumber(value: unkown): value is number;

/**
 * Checks if a value is a string
 */
function isString(value: unkown): value is string;
1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

3 years ago

1.1.0

4 years ago

1.0.0

4 years ago

0.0.0

5 years ago