Socket
Socket
Sign inDemoInstall

type-detect

Package Overview
Dependencies
0
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    type-detect

Improved typeof detection for node.js and the browser.


Version published
Weekly downloads
27M
increased by6.23%
Maintainers
1
Install size
8.95 kB
Created
Weekly downloads
 

Package description

What is type-detect?

The type-detect npm package is a utility for accurately detecting the types of JavaScript values. It goes beyond the basic `typeof` operator by being able to distinguish between more specific types, such as differentiating between an array and an object, or identifying specific types of objects like Date, RegExp, etc. This can be particularly useful in situations where strict type checking is necessary, such as input validation, or when working with complex data structures.

What are type-detect's main functionalities?

Detecting basic JavaScript types

This feature allows for the detection of basic JavaScript types such as number, boolean, string, null, and undefined. It provides a more reliable method than the `typeof` operator for these types.

"use strict";\nconst typeDetect = require('type-detect');\nconsole.log(typeDetect(1)); // 'number'\nconsole.log(typeDetect(true)); // 'boolean'\nconsole.log(typeDetect('Hello')); // 'string'\nconsole.log(typeDetect(null)); // 'null'\nconsole.log(typeDetect(undefined)); // 'undefined'

Distinguishing between arrays, objects, and null

This feature showcases the ability of type-detect to accurately distinguish between arrays, plain objects, and null, which is a common source of confusion when using the `typeof` operator.

"use strict";\nconst typeDetect = require('type-detect');\nconsole.log(typeDetect([])); // 'Array'\nconsole.log(typeDetect({})); // 'Object'\nconsole.log(typeDetect(null)); // 'null'

Identifying complex built-in types

This demonstrates type-detect's capability to identify more complex built-in JavaScript types such as Date objects and RegExp objects, which are not distinguishable using `typeof`.

"use strict";\nconst typeDetect = require('type-detect');\nconsole.log(typeDetect(new Date())); // 'Date'\nconsole.log(typeDetect(/regex/)); // 'RegExp'

Other packages similar to type-detect

Readme

Source

type-detect Build Status Coverage Status

Improved typeof detection for node.js and the browser.

Installation

Node.js

type-detect is available on npm.

$ npm install type-detect

Component

type-detect is available as a component.

$ component install chaijs/type-detect

Usage

Primary

The primary export of type-detect is function that can server as a replacement for typeof. The results of this function will be more specific than that of native typeof.

var type = require('type-detect');
array
assert('array' === type([]));
assert('array' === type(new Array()));
regexp
assert('regexp' === type(/a-z/gi));
assert('regexp' === type(new RegExp('a-z')));
function
assert('function' === type(function () {}));
arguments
(function () {
  assert('arguments' === type(arguments));
})();
date
assert('date' === type(new Date));
number
assert('number' === type(1));
assert('number' === type(1.234));
assert('number' === type(-1));
assert('number' === type(-1.234));
assert('number' === type(Infinity));
assert('number' === type(NaN));
string
assert('string' === type('hello world'));
null
assert('null' === type(null));
assert('null' !== type(undefined));
undefined
assert('undefined' === type(undefined));
assert('undefined' !== type(null));
object
var Noop = function () {};
assert('object' === type({}));
assert('object' !== type(Noop));
assert('object' === type(new Noop));
assert('object' === type(new Object));
assert('object' === type(new String('hello')));

Library

A Library is a small constructed repository for custom type detections.

var lib = new type.Library;
.of (obj)
  • @param {Mixed} object to test
  • @return {String} type

Expose replacement typeof detection to the library.

if ('string' === lib.of('hello world')) {
  // ...
}
.define (type, test)
  • @param {String} type
  • @param {RegExp|Function} test

Add a test to for the .test() assertion.

Can be defined as a regular expression:

lib.define('int', /^[0-9]+$/);

... or as a function:

lib.define('bln', function (obj) {
  if ('boolean' === lib.of(obj)) return true;
  var blns = [ 'yes', 'no', 'true', 'false', 1, 0 ];
  if ('string' === lib.of(obj)) obj = obj.toLowerCase();
  return !! ~blns.indexOf(obj);
});
.test (obj, test)
  • @param {Mixed} object
  • @param {String} type
  • @return {Boolean} result

Assert that an object is of type. Will first check natives, and if that does not pass it will use the user defined custom tests.

assert(lib.test('1', 'int'));
assert(lib.test('yes', 'bln'));

License

(The MIT License)

Copyright (c) 2013 Jake Luer jake@alogicalparadox.com (http://alogicalparadox.com)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FAQs

Last updated on 10 Oct 2013

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