Comparing version 1.0.0 to 1.0.1
// Generated by CoffeeScript 1.10.0 | ||
(function() { | ||
var LazyValue, compose, delay, product, retry, throttle; | ||
var LazyValue, compose, delay, map, product, retry, throttle; | ||
@@ -17,2 +17,4 @@ LazyValue = require("./LazyValue"); | ||
map = require("./map"); | ||
module.exports = { | ||
@@ -24,5 +26,6 @@ LazyValue: LazyValue, | ||
compose: compose, | ||
product: product | ||
product: product, | ||
map: map | ||
}; | ||
}).call(this); |
{ | ||
"name": "functors", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A collection of 'async' function generators and/or transformers", | ||
"main": "index.js", | ||
"scripts": { | ||
"prepublish": "coffee -c .", | ||
"prepublish": "coffee -c index.coffee */index.coffee", | ||
"test": "coffee test.coffee" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/fraczak/functors.git" | ||
"type": "git", | ||
"url": "https://github.com/fraczak/functors.git" | ||
}, | ||
@@ -19,4 +19,4 @@ "author": "Wojciech Fraczak", | ||
"coffee-script": "^1.10.0", | ||
"lodash": "^3.10.1" | ||
"lodash": "^4.5.1" | ||
} | ||
} |
@@ -68,1 +68,8 @@ `functors` is a collection of "_async_" function generators and/or transformers. | ||
# with the array of results | ||
map: | ||
----------- | ||
# `map(asyncFn)` generates a new async function which takes an array of | ||
# k elements and a callback `cb` as arguments, runs the async function | ||
# with every element of the array. Finnaly, it calls `cb` | ||
# with the array of results |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
75
0
63069
35
350