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

@most/disposable

Package Overview
Dependencies
Maintainers
4
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@most/disposable - npm Package Compare versions

Comparing version 0.9.0 to 0.9.1

22

dist/index.es.js

@@ -51,15 +51,15 @@ /** @license MIT License (c) copyright 2010-2017 original author or authors */

// Non-mutating array operations
// Non-mutating array operations
// cons :: a -> [a] -> [a]
// a with x prepended
// reduce :: (a -> b -> a) -> a -> [b] -> a
// accumulate via left-fold
function reduce (f, z, a) {
var r = z;
for (var i = 0, l = a.length; i < l; ++i) {
r = f(r, a[i], i);
}
return r
// cons :: a -> [a] -> [a]
// a with x prepended
// reduce :: (a -> b -> a) -> a -> [b] -> a
// accumulate via left-fold
function reduce (f, z, a) {
var r = z;
for (var i = 0, l = a.length; i < l; ++i) {
r = f(r, a[i], i);
}
return r
}

@@ -66,0 +66,0 @@ /** @license MIT License (c) copyright 2010-2017 original author or authors */

@@ -57,15 +57,15 @@ (function (global, factory) {

// Non-mutating array operations
// Non-mutating array operations
// cons :: a -> [a] -> [a]
// a with x prepended
// reduce :: (a -> b -> a) -> a -> [b] -> a
// accumulate via left-fold
function reduce (f, z, a) {
var r = z;
for (var i = 0, l = a.length; i < l; ++i) {
r = f(r, a[i], i);
}
return r
// cons :: a -> [a] -> [a]
// a with x prepended
// reduce :: (a -> b -> a) -> a -> [b] -> a
// accumulate via left-fold
function reduce (f, z, a) {
var r = z;
for (var i = 0, l = a.length; i < l; ++i) {
r = f(r, a[i], i);
}
return r
}

@@ -72,0 +72,0 @@ /** @license MIT License (c) copyright 2010-2017 original author or authors */

{
"name": "@most/disposable",
"version": "0.9.0",
"version": "0.9.1",
"description": "Reactive programming with lean, functions-only, curried, tree-shakeable API",

@@ -58,4 +58,4 @@ "typings": "type-definitions/index.d.ts",

"@most/prelude": "^1.5.3",
"@most/types": "^0.9.0"
"@most/types": "^0.9.1"
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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