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

is

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

8

is.js

@@ -28,3 +28,4 @@

*/
is.version = 0.1.1;
is.version = 0.1.2;

@@ -127,4 +128,3 @@ /**

is.decimal = function (value) {
return '[object Number]' === toString.call(value)
&& value % 1 !== 0;
return '[object Number]' === toString.call(value) && value % 1 !== 0;
};

@@ -387,3 +387,3 @@

is.le = function (value, other) {
return value < other;
return value <= other;
};

@@ -390,0 +390,0 @@

@@ -22,3 +22,3 @@ {

"main": "is.js",
"version": "0.1.1",
"version": "0.1.2",
"devDependencies": {},

@@ -25,0 +25,0 @@ "engines": {

@@ -18,7 +18,7 @@ # is

- defined (value)
- divisibleBy (value)
- divisibleBy (value, n)
- element (value)
- empty (value)
- error (value)
- equal (value)
- equal (value, other)
- even (value)

@@ -28,11 +28,11 @@ - false (value)

- hosted (value, host)
- ge (value)
- gt (value)
- ge (value, other)
- gt (value, other)
- instanceof (value, constructor)
- int (value)
- nan (value)
- le (value)
- lt (value)
- maximum (value)
- minimum (value)
- le (value, other)
- lt (value, other)
- maximum (value, others)
- minimum (value, others)
- null (value)

@@ -39,0 +39,0 @@ - number (value)

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