Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
of-type
is a very light module (function) that checks whether the given value is of particular type (or types).
typeof-arguments
to validate value type of the arguments passed through functions.npm install of-type
var ofType = require('of-type');
ofType("hello world!",'string') //returns true
ofType(true,'boolean|number|string') //returns true
ofType(new Date(),/date/i) //returns true
ofType(val,types)
val
types
[String|RegExp]val
is of the types
type.'null'
, 'undefined'
, or any value equal to constructor.name
, eg. 'string'
, 'number'
, 'regexp'
, 'array'
, 'object'
, 'boolean'
,'buffer'
, etc.types
[String] is case insensitive: 'String'
, 'string'
, 'StRiNg'
checks if the val
is of type [String]. For types
[RegExp] case insensitivity use i
flag, eg.: /String/
, /string/i
, /sTrInG/i
types
[String] can contain multiple allowed types, separated with |
, eg: 'array|object'
, 'boolean|number|null|undefined'
, string|number
. For types
[RegExp] multiple values use (x|y)
expression, eg: /(string|number)/i
types
can contain the value: 'arguments'
. It returns true
for the arguments
Objecttypes
can contain the value: 'truthy'
. It returns true
for the val
values like: "abc"
, true
, 1
, {}
, []
,function(){}
, etc.types
can contain the value: 'falsy'
. It returns true
for the val
values like: ""
, false
, 0
, null
, undefined
, etc.types
can contain the value: ''
or 'any'
, then it returns true
for the val
of any typeThe function ofType()
returns true
if the val
is of the defined type or is one of the defined types.
The function ofType()
returns false
if the val
is non the defined type or is any of the defined types
var ofType = require('of-type');
ofType("abc",'string'); //true
ofType(15,'number'); //true
ofType([1,2,3],'array'); //true
ofType([1,2,3],'object'); //false
ofType(true,'boolean'); //true
ofType(/hello/,'regexp'); //true
ofType({name:"Paul"},'object'); //true
ofType(function(){},'function'); //true
ofType((function(){return arguments;})(),'arguments'); //true
ofType((function(){return arguments;})(),'object'); //true
ofType(()=>{},'FuNcTiOn'); //true
ofType(ofType,'function'); //true
ofType(new Date(),'DATE'); //true
ofType(new Array(1,2,3),'array'); //true
ofType(new Buffer(0),'buffer'); //true
ofType(new String("abc"),'string'); //true
ofType((()=>"abc")(),'string'); //true
ofType(10,'string|number'); //true
ofType(10,'string|array'); //false
ofType(null,'undefined|null'); //true
ofType(null,'falsy'); //true
ofType(0,'falsy'); //true
ofType(undefined,'falsy'); //true
ofType("",'falsy'); //true
ofType(10,'any|string'); //true
ofType(10,''); //true
ofType(true,'truthy'); //true
ofType("a",'truthy'); //true
ofType(new Error(),'error'); //true
ofType(new TypeError(),'typeerror'); //true
ofType(new SyntaxError(),'syntaxerror'); //true
ofType(new SyntaxError(),'error'); //false
ofType(document.createElement('DIV'),'htmldivelement'); //true
ofType(document.createElement('DIV'),'element'); //false
ofType(document.createElement('LI'),'HtmlLiElement'); //true
function Name(){};
ofType(new Name(),'Name'); //true
ofType(new Name(),'name'); //true
ofType(new Name(),'object'); //false
/*
[RegExp] samples:
*/
ofType("abc",/string/); //false
ofType("abc",/String/); //true
ofType("abc",/string/i); //true
ofType(10,/string|number/i); //true
ofType(0,/Number/); //true
ofType(!0,/Boolean/); //true
ofType((function(){return arguments;})(),/arguments/); //true
ofType((function(){return arguments;})(),/object/i); //true
ofType(123,/any/i); //true
ofType("123",/any/i); //true
ofType([1,2,3],/any/i); //true
ofType(document.createElement('DIV'),/^html.*element$/i); //true
ofType(document.createElement('DIV'),/^[a-z]+div[a-z]+$/i); //true
ofType(document.createElement('A'),/anchor/i); //true
ofType(document.createElement('UL'),/html[uo]listelement/i); //true
ofType(document.createElement('OL'),/html[uo]listelement/i); //true
ofType(null,/falsy/); //true
ofType(0,/falsy/); //true
ofType([1,2,3],/truthy/); //true
ofType("",/truthy/); //false
ofType(new SyntaxError(),/(syntax|type)error/i); //true
ofType(new TypeError(),/(syntax|type)error/i); //true
ofType(new Error(),/(syntax|type)error/i); //false
FAQs
Check if the given value is of the particular type or types.
We found that of-type demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.