Socket
Socket
Sign inDemoInstall

fxjs2

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fxjs2 - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

9

fx.js

@@ -77,5 +77,8 @@ export const

L.range = function *(limit) {
var i = -1;
while (++i < limit) yield i;
L.range = function *(start = 0, stop = start, step = 1) {
if (arguments.length == 1) start = 0;
while (start < stop) {
yield start;
start += step;
}
};

@@ -82,0 +85,0 @@

{
"name": "fxjs2",
"version": "0.1.1",
"version": "0.1.2",
"description": "Functional Extensions for Javascript",

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

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