Socket
Socket
Sign inDemoInstall

typedescriptor

Package Overview
Dependencies
1
Maintainers
5
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    typedescriptor

typedescriptor identifies and describes types.


Version published
Maintainers
5
Install size
60.9 kB
Created

Changelog

Source

4.0.12 (2021-08-15)

Bug Fixes

  • bump path-parse from 1.0.6 to 1.0.7 (#328) (88e939f)

Readme

Source

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

Keywords

FAQs

Last updated on 15 Aug 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc