Socket
Socket
Sign inDemoInstall

ee-types

Package Overview
Dependencies
0
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ee-types

Reliable & easy Js & ES Type detection


Version published
Weekly downloads
6.4K
increased by0.25%
Maintainers
1
Install size
11.2 kB
Created
Weekly downloads
 

Readme

Source

ee-types

Easy and reliable type detection with ES6+ support.

Supported by joinbox.com, your swiss node.js & javascript agency :rocket:

npm Travis

Compatibility

For a version supporting older browsers and node version please use ee-types version < 3.0.0. Compatible with node 10+ (--experimental-modules flag) and browsers supporting es modules.

Importing

node

import types from 'ee-types';

browser

from html

<script type="module" src="node_modules/ee-types/src/types.mjs"></script>

from within a module

import types from 'node_modules/ee-types/src/types.mjs';

API

Be aware that the different object types like Maps, Promises and so on are not detected as objects but as their respective type. If you need to detect them as objects please use the types.someObject() method instead of the types.object() method.

Explicitly test for a type.

types.array([]) // true

Get the type of some variable

types(/[a-z]+/gi) // regexp

Supported Types

  • string
  • number
  • boolean
  • array
  • intArray
  • floatArray
  • object
  • function
  • symbol
  • date
  • regexp
  • error
  • undefined
  • buffer
  • null
  • arrayBuffer
  • map
  • weakMap
  • set
  • weakSet
  • dataView
  • float32Array
  • float64Array
  • int8Array
  • int16Array
  • int32Array
  • uInt8Array
  • uInt16Array
  • uInt32Array
  • uInt8ClampedArray
  • generator
  • promise
  • someObject
Object Types

Since many of the types defined by javascript are just special objects that also can be treated as normal objects ee-types has a bunch of methods that allow you to handle that correctly.

For example, Map is an object, or a custom class where you define a getter that returns a specific name for your object:

const X = class {
    get [Symbol.toStringTag]() {
        return 'AQL query';;
    }
};

console.log(Object.prototype.toString.call(new X()));
// prints: [object AQL Query]
Check for a classic object
types.object({}); // true
types.object(new Map()); // false

// be aware that if you are not explicitly testing
// for an object any object will be treated as one
types({}) // 'object'
types(new Map()) // 'object'

Check any type of object
types.someObject({}); // true
types.someObject(new Map()); // false
types(new Map()) // 'object'

Examples

var types = require('ee-types');


types.string('nope');                // true
types.strign(new String('yeah'));    // true


types(2) // number

types([]]) // array
types(new Array()]) // array
types(new Int8Array()]) // int8Array


types.promise(Promise.all()) // true

Keywords

FAQs

Last updated on 06 Feb 2019

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