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

functors

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

functors - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

map/a/x/a

7

index.js
// 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

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