File: forEach.js

package info (click to toggle)
node-array-from 2.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 644 kB
  • sloc: makefile: 2
file content (23 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"use strict";

exports.__esModule = true;
/**
 * @module 1-liners/forEach
 *
 * @description
 *
 * Same as `[1, 2, 3].forEach(Math.sqrt)`.
 *
 * @example
 *
 * 	var forEach = require('1-liners/forEach');
 *
 * 	forEach(i => console.log('Item: ' + i), [9, 25]); // => logs "Item: 9" and "Item: 25"
 *
 */

exports["default"] = function (forEach, arr) {
  return arr.forEach(forEach);
};

module.exports = exports["default"];