Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@berish/typeof
Advanced tools
Library for information about the type of any object or primitive
$ npm install @berish/typeof --save
or
$ yarn add @berish/typeof
Supports typescript
import type, { ITypeofHandler, TypeofResult } from '../';
console.log(type('')); // === 'string'
console.log(type('hello')); // === 'string'
console.log(type(new String('helloo'))); // === 'string'
console.log(type(0)); // === 'number'
console.log(type(-0)); // === 'number'
console.log(type(0xff)); // === 'number'
console.log(type(-3.142)); // === 'number'
console.log(type(Infinity)); // === 'number'
console.log(type(-Infinity)); // === 'number'
console.log(type(NaN)); // === 'number'
console.log(type(Number(53))); // === 'number'
console.log(type(new Number(53))); // === 'number'
console.log(type(true)); // === 'boolean'
console.log(type(false)); // === 'boolean'
console.log(type(new Boolean(true))); // === 'boolean'
console.log(type(undefined)); // === 'undefined'
console.log(type(null)); // === 'null'
console.log(type(Symbol())); // === 'symbol'
console.log(type(Symbol.species)); // === 'symbol'
console.log(
(function() {
return type(arguments);
})(),
); // === 'arguments'
console.log(type(function() {})); // === 'function'
console.log(type(new Function())); // === 'function'
console.log(type(class {})); // === 'function'
console.log(type(/^(.+)$/)); // === 'regexp'
console.log(type(new RegExp('^(.+)$'))); // === 'regexp'
console.log(type(new Date())); // === 'date'
console.log(type(new Set())); // === 'set'
console.log(type(new Map())); // === 'map'
console.log(type(new WeakSet())); // === 'weakset'
console.log(type(new WeakMap())); // === 'weakmap'
console.log(type([])); // === 'array'
console.log(type(Array(5))); // === 'array'
console.log(type({})); // === 'object'
console.log(type(new Object())); // === 'object'
console.log(type(Object())); // === 'object'
console.log(type(new (class A {})())); // === 'object'
class A {
constructor() {
this.name = 'Hello';
}
}
console.log(type(new A())); // === 'object';
type MyType = TypeofResult | 'classAInstance';
const handlerBefore: ITypeofHandler<MyType> = {
before: true,
handler: (value, preview) => {
console.log(value); // === { name: 'Hello' } (as instance of A class);
console.log(preview); // === 'undefined'
return value instanceof A;
},
typeName: 'classAInstance',
};
console.log(type<MyType>(new A(), [handlerBefore])); // === 'classAInstance'
const handlerAfter: ITypeofHandler<MyType> = {
handler: (value, preview) => {
console.log(value); // === { name: 'Hello' } (as instance of A class);
console.log(preview); // === 'object'
return value instanceof A;
},
typeName: 'classAInstance',
};
console.log(type<MyType>(new A(), [handlerAfter])); // === 'classAInstance'
The handler with before: true
is executed before the function logic passes, so in the field preview
we see the value undefined
.
But the handler with before: false
or before: undefined
is executed after the logic of the function passes, so in the field preview
we see the value that would be received by default (as if without a handler)
FAQs
Library for information about the type of any object or primitive
We found that @berish/typeof demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.