4.0.14 • Published 2 years ago

typedescriptor v4.0.14

Weekly downloads
4,058
License
MIT
Repository
github
Last release
2 years ago

typedescriptor

typedescriptor identifies and describes types.

Status

CategoryStatus
Versionnpm
DependenciesDavid
Dev dependenciesDavid
BuildGitHub Actions
LicenseGitHub

Installation

$ npm install typedescriptor

Quick Start

First you need to import the functions you are interested in:

const { 
  isArray,
  isBoolean,
  isError,
  isFunction,
  isMap,
  isNull,
  isNumber,
  isObject,
  isReference,
  isScalar,
  isSet,
  isString,
  isSymbol,
  isUndefined,
  typeOf
} = require('typedescriptor');

If you use TypeScript, use the following code instead:

import {
  isArray,
  isBoolean,
  isError,
  isFunction,
  isMap,
  isNull,
  isNumber,
  isObject,
  isReference,
  isScalar,
  isSet,
  isString,
  isSymbol,
  isUndefined,
  typeOf
} from 'typedescriptor';

Then, use the type-guards to determine a variable's type or to narrow a variable's type in TypeScript:

if (isNumber(value)) {
  // Do something with the number.
}

The types array, boolean, error, function, map, null, number, object, set, string, symbol and undefined are supported.

The isError implementation is re-exported from defekt.

Getting a variable's type name

To get a variable's type as a string, use typeOf:

const typeName = typeOf('foo');
//=> 'string'

This is not compatible with the builtin typeof operator. Most notably: null is not considered to be an object, since TypeScript differentiates between the two. null is considered a separate type.

Caveats

The isObject predicate overlaps with multiple others. If, for example, you want to treat a variable differently based on whether it is an array or any other object, you have to first check whether the variable is an array and only then check whether it is an object. If you would first check whether the variable is an object, the result would be true even for arrays.

const doStuff = function (value: any): void {
  if (isArray(value)) {
    // Do things with the array and return!
  }
  if (isObject(value)) {
    // Do things with the object, which now can not be an array.
  }
}

The same is true for isError, isMap and isSet.

Running the quality assurance

To run quality assurance for this module use roboter:

$ npx roboter
4.0.14

2 years ago

4.0.13

2 years ago

4.0.12

3 years ago

4.0.11

3 years ago

4.0.10

3 years ago

4.0.9

3 years ago

4.0.8

3 years ago

4.0.5

3 years ago

4.0.4

3 years ago

4.0.7

3 years ago

4.0.6

3 years ago

4.0.0-internal.1

3 years ago

4.0.0-internal.2

3 years ago

4.0.1

3 years ago

4.0.0

3 years ago

4.0.3

3 years ago

4.0.2

3 years ago

3.0.2

3 years ago

3.0.1

4 years ago

3.0.0

4 years ago

2.0.4

5 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago