Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ee-types

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ee-types

Reliabale type detection

  • 0.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.1K
decreased by-66.41%
Maintainers
1
Weekly downloads
 
Created
Source

ee-types

Reliabale type detection

installation

npm install ee-types

usage

var type = require( "ee-types" );


type.string( "nope" ); 					// true
type.strign( new String( "yeah" ) ); 	// true
type.s( "michael" ); 					// true

API

type.string()
type.number()
type.boolean()
type.function()
type.object() 			// array, dates, erors, regexps & sometimes strings, numbers and bools are objects
type.date()
type.error()
type.regexp()
type.array()

shortcut methods

type.s()
type.n()
type.b()
type.f()
type.o()
type.d()
type.e()
type.r()
type.a()

check array and their contents. for every type above there is an array method like the one below.

type.stringArray( [ "hi", new String( "name" ), "is", "michael" ] )	 // true
type.sa( [ "hi", new String( "name" ), "is", "michael" ] )	 		 // true

FAQs

Package last updated on 23 Aug 2013

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc