Socket
Socket
Sign inDemoInstall

is-type-of

Package Overview
Dependencies
1
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.1 to 0.0.2

4

index.js

@@ -43,2 +43,6 @@ /*!

exports.int32 = function (obj) {
return exports.int(obj) && (obj < MAX_INT_31 && obj >= -MAX_INT_31);
};
exports.long = function (obj) {

@@ -45,0 +49,0 @@ return exports.int(obj) && (obj >= MAX_INT_31 || obj < -MAX_INT_31);

2

package.json
{
"name": "is-type-of",
"version": "0.0.1",
"version": "0.0.2",
"description": "complete type checking for node",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -71,2 +71,4 @@ is-type-of

#### is.int32(int)
#### is.long(long)

@@ -73,0 +75,0 @@

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