Package: wnpp Severity: wishlist Owner: Shirish Togarla <shirishtogarla...@gmail.com> X-Debbugs-CC: debian-devel@lists.debian.org
* Package name : node-array-map Version : 0.0.0 Upstream Author : James Halliday <m...@substack.net> (http://substack.net) * URL : https://github.com/substack/array-map * License : Expat Programming Lang: JavaScript Description : `[].map(f)` for older browsers It maps an array(i.e. every value in the array) onto a function and returns the result.For example var map = require('array-map'); var letters = map([97,98,99], function (c) { return String.fromCharCode(c); }); console.log(letters.join('')); The output is abc