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

es-abstract

Package Overview
Dependencies
Maintainers
1
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

es-abstract - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

8

CHANGELOG.md

@@ -0,1 +1,5 @@

1.2.1 / 2015-03-20
=================
* Fix `isFinite` helper.
1.2.0 / 2015-03-19

@@ -6,2 +10,6 @@ =================

1.1.2 / 2015-03-20
=================
* Fix isFinite helper.
1.1.1 / 2015-03-19

@@ -8,0 +16,0 @@ =================

2

helpers/isFinite.js

@@ -0,1 +1,3 @@

var $isNaN = Number.isNaN || function (a) { return a !== a; };
module.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };

2

package.json
{
"name": "es-abstract",
"version": "1.2.0",
"version": "1.2.1",
"author": "Jordan Harband",

@@ -5,0 +5,0 @@ "description": "ECMAScript spec abstract operations.",

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