New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fairmont-reactive

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fairmont-reactive - npm Package Compare versions

Comparing version 1.0.0-beta-19 to 1.0.0-beta-20

32

lib/reactive.js
// Generated by CoffeeScript 1.9.3
(function() {
var async, curry, flow, iterator, pump, reduce, start, tee, throttle,
var async, asyncIterator, curry, flow, iterator, pump, reduce, ref, start, tee, throttle,
slice = [].slice;

@@ -10,3 +10,3 @@

iterator = require("./iterator").iterator;
ref = require("./iterator"), iterator = ref.iterator, asyncIterator = ref.asyncIterator;

@@ -24,6 +24,6 @@ reduce = require("./reducer").reduce;

start = async(function*(i) {
var done, ref, results, value;
var done, ref1, results, value;
results = [];
while (true) {
ref = (yield i()), done = ref.done, value = ref.value;
ref1 = (yield i()), done = ref1.done, value = ref1.value;
if (done) {

@@ -39,5 +39,5 @@ break;

pump = curry(function(s, i) {
return iterator(function*() {
var done, ref, value;
ref = (yield i()), done = ref.done, value = ref.value;
return asyncIterator(async(function*() {
var done, ref1, value;
ref1 = (yield i()), done = ref1.done, value = ref1.value;
if (!done) {

@@ -54,9 +54,9 @@ return {

}
});
}));
});
tee = curry(function(f, i) {
return iterator(function*() {
var done, ref, value;
ref = (yield i()), done = ref.done, value = ref.value;
return asyncIterator(async(function*() {
var done, ref1, value;
ref1 = (yield i()), done = ref1.done, value = ref1.value;
if (!done) {

@@ -69,3 +69,3 @@ f(value);

};
});
}));
});

@@ -76,6 +76,6 @@

last = 0;
return iterator(function*() {
var done, now, ref, value;
return asyncIterator(async(function*() {
var done, now, ref1, value;
while (true) {
ref = (yield i()), done = ref.done, value = ref.value;
ref1 = (yield i()), done = ref1.done, value = ref1.value;
if (done) {

@@ -94,3 +94,3 @@ break;

};
});
}));
});

@@ -97,0 +97,0 @@

{
"name": "fairmont-reactive",
"version": "1.0.0-beta-19",
"version": "1.0.0-beta-20",
"description": "Functional reactive programming in JavaScript and CoffeeScript.",

@@ -5,0 +5,0 @@ "files": [

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