node-gulp-4.0.2+~cs38.20.35/000077500000000000000000000000001415667007300150405ustar00rootroot00000000000000node-gulp-4.0.2+~cs38.20.35/.editorconfig000066400000000000000000000004051415667007300175140ustar00rootroot00000000000000root = true [*] indent_style = space end_of_line = lf charset = utf-8 indent_size = 2 trim_trailing_whitespace = true insert_final_newline = true [{**/{actual,fixtures,expected,templates}/**,*.md}] trim_trailing_whitespace = false insert_final_newline = falsenode-gulp-4.0.2+~cs38.20.35/.eslintrc.json000066400000000000000000000071251415667007300176410ustar00rootroot00000000000000{ "ecmaFeatures": { "modules": true, "experimentalObjectRestSpread": true }, "env": { "browser": false, "es6": true, "node": true, "mocha": true }, "globals": { "document": false, "navigator": false, "window": false }, "rules": { "accessor-pairs": 2, "arrow-spacing": [2, { "before": true, "after": true }], "block-spacing": [2, "always"], "brace-style": [2, "1tbs", { "allowSingleLine": true }], "comma-dangle": [2, "never"], "comma-spacing": [2, { "before": false, "after": true }], "comma-style": [2, "last"], "constructor-super": 2, "curly": [2, "multi-line"], "dot-location": [2, "property"], "eol-last": 2, "eqeqeq": [2, "allow-null"], "generator-star-spacing": [2, { "before": true, "after": true }], "handle-callback-err": [2, "^(err|error)$" ], "indent": [2, 2, { "SwitchCase": 1 }], "key-spacing": [2, { "beforeColon": false, "afterColon": true }], "keyword-spacing": [2, { "before": true, "after": true }], "new-cap": [2, { "newIsCap": true, "capIsNew": false }], "new-parens": 2, "no-array-constructor": 2, "no-caller": 2, "no-class-assign": 2, "no-cond-assign": 2, "no-const-assign": 2, "no-control-regex": 2, "no-debugger": 2, "no-delete-var": 2, "no-dupe-args": 2, "no-dupe-class-members": 2, "no-dupe-keys": 2, "no-duplicate-case": 2, "no-empty-character-class": 2, "no-eval": 2, "no-ex-assign": 2, "no-extend-native": 2, "no-extra-bind": 2, "no-extra-boolean-cast": 2, "no-extra-parens": [2, "functions"], "no-fallthrough": 2, "no-floating-decimal": 2, "no-func-assign": 2, "no-implied-eval": 2, "no-inner-declarations": [2, "functions"], "no-invalid-regexp": 2, "no-irregular-whitespace": 2, "no-iterator": 2, "no-label-var": 2, "no-labels": 2, "no-lone-blocks": 2, "no-mixed-spaces-and-tabs": 2, "no-multi-spaces": 2, "no-multi-str": 2, "no-multiple-empty-lines": [2, { "max": 1 }], "no-native-reassign": 0, "no-negated-in-lhs": 2, "no-new": 2, "no-new-func": 2, "no-new-object": 2, "no-new-require": 2, "no-new-wrappers": 2, "no-obj-calls": 2, "no-octal": 2, "no-octal-escape": 2, "no-proto": 0, "no-redeclare": 2, "no-regex-spaces": 2, "no-return-assign": 2, "no-self-compare": 2, "no-sequences": 2, "no-shadow-restricted-names": 2, "no-spaced-func": 2, "no-sparse-arrays": 2, "no-this-before-super": 2, "no-throw-literal": 2, "no-trailing-spaces": 0, "no-undef": 2, "no-undef-init": 2, "no-unexpected-multiline": 2, "no-unneeded-ternary": [2, { "defaultAssignment": false }], "no-unreachable": 2, "no-unused-vars": [2, { "vars": "all", "args": "none" }], "no-useless-call": 0, "no-with": 2, "one-var": [0, { "initialized": "never" }], "operator-linebreak": [0, "after", { "overrides": { "?": "before", ":": "before" } }], "padded-blocks": [0, "never"], "quotes": [2, "single", "avoid-escape"], "radix": 2, "semi": [2, "always"], "semi-spacing": [2, { "before": false, "after": true }], "space-before-blocks": [2, "always"], "space-before-function-paren": [2, "never"], "space-in-parens": [2, "never"], "space-infix-ops": 2, "space-unary-ops": [2, { "words": true, "nonwords": false }], "spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }], "use-isnan": 2, "valid-typeof": 2, "wrap-iife": [2, "any"], "yoda": [2, "never"] } } node-gulp-4.0.2+~cs38.20.35/.gitattributes000066400000000000000000000001771415667007300177400ustar00rootroot00000000000000# Enforce Unix newlines * text eol=lf # binaries *.ai binary *.psd binary *.jpg binary *.gif binary *.png binary *.jpeg binarynode-gulp-4.0.2+~cs38.20.35/.travis.yml000066400000000000000000000001641415667007300171520ustar00rootroot00000000000000sudo: false os: - linux - osx language: node_js node_js: - node - '6' - '5' - '4' - '0.12' - '0.10' node-gulp-4.0.2+~cs38.20.35/.verb.md000066400000000000000000000007731415667007300164050ustar00rootroot00000000000000## Why use this? JavaScript's native `Array.map()` is slow, and other popular array map libraries are focused on browser compatibility, which makes them bloated or less than idea for non-browser usage. This implementation is focused on node.js usage keeping it light and fast. ## Usage ```js var map = require('{%= name %}'); map(['a', 'b', 'c'], function(ele) { return ele + ele; }); //=> ['aa', 'bb', 'cc'] map(['a', 'b', 'c'], function(ele, i) { return i + ele; }); //=> ['0a', '1b', '2c'] ``` node-gulp-4.0.2+~cs38.20.35/LICENSE000066400000000000000000000021001415667007300160360ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) 2015, 2017, Jon Schlinkert Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. node-gulp-4.0.2+~cs38.20.35/README.md000066400000000000000000000067101415667007300163230ustar00rootroot00000000000000# arr-map [![NPM version](https://img.shields.io/npm/v/arr-map.svg?style=flat)](https://www.npmjs.com/package/arr-map) [![NPM monthly downloads](https://img.shields.io/npm/dm/arr-map.svg?style=flat)](https://npmjs.org/package/arr-map) [![NPM total downloads](https://img.shields.io/npm/dt/arr-map.svg?style=flat)](https://npmjs.org/package/arr-map) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/arr-map.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/arr-map) > Faster, node.js focused alternative to JavaScript's native array map. ## Install Install with [npm](https://www.npmjs.com/): ```sh $ npm install --save arr-map ``` ## Why use this? JavaScript's native `Array.map()` is slow, and other popular array map libraries are focused on browser compatibility, which makes them bloated or less than idea for non-browser usage. This implementation is focused on node.js usage keeping it light and fast. ## Usage ```js var map = require('arr-map'); map(['a', 'b', 'c'], function(ele) { return ele + ele; }); //=> ['aa', 'bb', 'cc'] map(['a', 'b', 'c'], function(ele, i) { return i + ele; }); //=> ['0a', '1b', '2c'] ``` ## About ### Related projects * [arr-diff](https://www.npmjs.com/package/arr-diff): Returns an array with only the unique values from the first array, by excluding all… [more](https://github.com/jonschlinkert/arr-diff) | [homepage](https://github.com/jonschlinkert/arr-diff "Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.") * [arr-filter](https://www.npmjs.com/package/arr-filter): Faster alternative to javascript's native filter method. | [homepage](https://github.com/jonschlinkert/arr-filter "Faster alternative to javascript's native filter method.") * [arr-flatten](https://www.npmjs.com/package/arr-flatten): Recursively flatten an array or arrays. This is the fastest implementation of array flatten. | [homepage](https://github.com/jonschlinkert/arr-flatten "Recursively flatten an array or arrays. This is the fastest implementation of array flatten.") * [arr-reduce](https://www.npmjs.com/package/arr-reduce): Fast array reduce that also loops over sparse elements. | [homepage](https://github.com/jonschlinkert/arr-reduce "Fast array reduce that also loops over sparse elements.") ### Contributing Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). ### Building docs _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ To generate the readme, run the following command: ```sh $ npm install -g verbose/verb#dev verb-generate-readme && verb ``` ### Running tests Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: ```sh $ npm install && npm test ``` ### Author **Jon Schlinkert** * [github/jonschlinkert](https://github.com/jonschlinkert) * [twitter/jonschlinkert](https://twitter.com/jonschlinkert) ### License Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert). Released under the [MIT License](LICENSE). *** _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.4.2, on February 28, 2017._node-gulp-4.0.2+~cs38.20.35/benchmark/000077500000000000000000000000001415667007300167725ustar00rootroot00000000000000node-gulp-4.0.2+~cs38.20.35/benchmark/check.js000077500000000000000000000013011415667007300204030ustar00rootroot00000000000000'use strict'; var fs = require('fs'); var path = require('path'); var chalk = require('chalk'); var glob = require('glob'); var mm = require('micromatch'); var fixtures = lookup('fixtures', '*.js'); lookup('code', 'whil*.js').forEach(function (fp) { var name = path.basename(fp, path.extname(fp)); var fn = require(fp); fixtures.forEach(function (fixture) { console.log(chalk.bold(name) + ':', fn.apply(fn, require(fixture))); }); }); function lookup(dir, pattern, opts) { dir = path.join(__dirname, dir); var files = fs.readdirSync(dir); return files.filter(function (fp) { return mm.isMatch(fp, pattern, opts); }).map(function (fp) { return path.join(dir, fp); }); } node-gulp-4.0.2+~cs38.20.35/benchmark/code/000077500000000000000000000000001415667007300177045ustar00rootroot00000000000000node-gulp-4.0.2+~cs38.20.35/benchmark/code/arr-map.js000066400000000000000000000002031415667007300215740ustar00rootroot00000000000000 var map = require('../..'); module.exports = function (arr) { return map(arr, function (ele) { return ele + ele; }); }; node-gulp-4.0.2+~cs38.20.35/benchmark/code/array-map.js000066400000000000000000000002071415667007300221320ustar00rootroot00000000000000 var map = require('array-map'); module.exports = function (arr) { return map(arr, function (ele) { return ele + ele; }); }; node-gulp-4.0.2+~cs38.20.35/benchmark/code/for-push-new.js000066400000000000000000000004111415667007300225700ustar00rootroot00000000000000 module.exports = function (arr) { return map(arr, function (ele) { return ele + ele; }); }; function map(arr, fn) { var len = arr.length; var res = new Array(len); for (var i = 0; i < len; i++) { res.push(fn(arr[i], i)); } return res; } node-gulp-4.0.2+~cs38.20.35/benchmark/code/for-push.js000066400000000000000000000003751415667007300220120ustar00rootroot00000000000000 module.exports = function (arr) { return map(arr, function (ele) { return ele + ele; }); }; function map(arr, fn) { var len = arr.length; var res = []; for (var i = 0; i < len; i++) { res.push(fn(arr[i], i)); } return res; } node-gulp-4.0.2+~cs38.20.35/benchmark/code/native.js000066400000000000000000000001451415667007300215300ustar00rootroot00000000000000 module.exports = function (arr) { return arr.map(function (ele) { return ele + ele; }); }; node-gulp-4.0.2+~cs38.20.35/benchmark/code/while-push-new.js000066400000000000000000000004131415667007300231140ustar00rootroot00000000000000 module.exports = function (arr) { return map(arr, function (ele) { return ele + ele; }); }; function map(arr, fn) { var len = arr.length; var res = new Array(len); var i = -1; while (++i < len) { res.push(fn(arr[i], i)); } return res; } node-gulp-4.0.2+~cs38.20.35/benchmark/code/while-push.js000066400000000000000000000003711415667007300223300ustar00rootroot00000000000000 module.exports = function (arr) { return map(arr, function (ele) { return ele + ele; }); }; function map(arr, fn) { var len = arr.length; var res = [], i = -1; while (++i < len) { res.push(fn(arr[i], i)); } return res; } node-gulp-4.0.2+~cs38.20.35/benchmark/fixtures/000077500000000000000000000000001415667007300206435ustar00rootroot00000000000000node-gulp-4.0.2+~cs38.20.35/benchmark/fixtures/long.js000066400000000000000000000552531415667007300221520ustar00rootroot00000000000000module.exports = [['1a', '2a', '3a', '4a', '5a', '6a', '7a', '8a', '9a', '10a', '11a', '12a', '13a', '14a', '15a', '16a', '17a', '18a', '19a', '20a', '21a', '22a', '23a', '24a', '25a', '26a', '27a', '28a', '29a', '30a', '31a', '32a', '33a', '34a', '35a', '36a', '37a', '38a', '39a', '40a', '41a', '42a', '43a', '44a', '45a', '46a', '47a', '48a', '49a', '50a', '51a', '52a', '53a', '54a', '55a', '56a', '57a', '58a', '59a', '60a', '61a', '62a', '63a', '64a', '65a', '66a', '67a', '68a', '69a', '70a', '71a', '72a', '73a', '74a', '75a', '76a', '77a', '78a', '79a', '80a', '81a', '82a', '83a', '84a', '85a', '86a', '87a', '88a', '89a', '90a', '91a', '92a', '93a', '94a', '95a', '96a', '97a', '98a', '99a', '100a', '1b', '2b', '3b', '4b', '5b', '6b', '7b', '8b', '9b', '10b', '11b', '12b', '13b', '14b', '15b', '16b', '17b', '18b', '19b', '20b', '21b', '22b', '23b', '24b', '25b', '26b', '27b', '28b', '29b', '30b', '31b', '32b', '33b', '34b', '35b', '36b', '37b', '38b', '39b', '40b', '41b', '42b', '43b', '44b', '45b', '46b', '47b', '48b', '49b', '50b', '51b', '52b', '53b', '54b', '55b', '56b', '57b', '58b', '59b', '60b', '61b', '62b', '63b', '64b', '65b', '66b', '67b', '68b', '69b', '70b', '71b', '72b', '73b', '74b', '75b', '76b', '77b', '78b', '79b', '80b', '81b', '82b', '83b', '84b', '85b', '86b', '87b', '88b', '89b', '90b', '91b', '92b', '93b', '94b', '95b', '96b', '97b', '98b', '99b', '100b', '1c', '2c', '3c', '4c', '5c', '6c', '7c', '8c', '9c', '10c', '11c', '12c', '13c', '14c', '15c', '16c', '17c', '18c', '19c', '20c', '21c', '22c', '23c', '24c', '25c', '26c', '27c', '28c', '29c', '30c', '31c', '32c', '33c', '34c', '35c', '36c', '37c', '38c', '39c', '40c', '41c', '42c', '43c', '44c', '45c', '46c', '47c', '48c', '49c', '50c', '51c', '52c', '53c', '54c', '55c', '56c', '57c', '58c', '59c', '60c', '61c', '62c', '63c', '64c', '65c', '66c', '67c', '68c', '69c', '70c', '71c', '72c', '73c', '74c', '75c', '76c', '77c', '78c', '79c', '80c', '81c', '82c', '83c', '84c', '85c', '86c', '87c', '88c', '89c', '90c', '91c', '92c', '93c', '94c', '95c', '96c', '97c', '98c', '99c', '100c', '1d', '2d', '3d', '4d', '5d', '6d', '7d', '8d', '9d', '10d', '11d', '12d', '13d', '14d', '15d', '16d', '17d', '18d', '19d', '20d', '21d', '22d', '23d', '24d', '25d', '26d', '27d', '28d', '29d', '30d', '31d', '32d', '33d', '34d', '35d', '36d', '37d', '38d', '39d', '40d', '41d', '42d', '43d', '44d', '45d', '46d', '47d', '48d', '49d', '50d', '51d', '52d', '53d', '54d', '55d', '56d', '57d', '58d', '59d', '60d', '61d', '62d', '63d', '64d', '65d', '66d', '67d', '68d', '69d', '70d', '71d', '72d', '73d', '74d', '75d', '76d', '77d', '78d', '79d', '80d', '81d', '82d', '83d', '84d', '85d', '86d', '87d', '88d', '89d', '90d', '91d', '92d', '93d', '94d', '95d', '96d', '97d', '98d', '99d', '100d', '1e', '2e', '3e', '4e', '5e', '6e', '7e', '8e', '9e', '10e', '11e', '12e', '13e', '14e', '15e', '16e', '17e', '18e', '19e', '20e', '21e', '22e', '23e', '24e', '25e', '26e', '27e', '28e', '29e', '30e', '31e', '32e', '33e', '34e', '35e', '36e', '37e', '38e', '39e', '40e', '41e', '42e', '43e', '44e', '45e', '46e', '47e', '48e', '49e', '50e', '51e', '52e', '53e', '54e', '55e', '56e', '57e', '58e', '59e', '60e', '61e', '62e', '63e', '64e', '65e', '66e', '67e', '68e', '69e', '70e', '71e', '72e', '73e', '74e', '75e', '76e', '77e', '78e', '79e', '80e', '81e', '82e', '83e', '84e', '85e', '86e', '87e', '88e', '89e', '90e', '91e', '92e', '93e', '94e', '95e', '96e', '97e', '98e', '99e', '100e', '1f', '2f', '3f', '4f', '5f', '6f', '7f', '8f', '9f', '10f', '11f', '12f', '13f', '14f', '15f', '16f', '17f', '18f', '19f', '20f', '21f', '22f', '23f', '24f', '25f', '26f', '27f', '28f', '29f', '30f', '31f', '32f', '33f', '34f', '35f', '36f', '37f', '38f', '39f', '40f', '41f', '42f', '43f', '44f', '45f', '46f', '47f', '48f', '49f', '50f', '51f', '52f', '53f', '54f', '55f', '56f', '57f', '58f', '59f', '60f', '61f', '62f', '63f', '64f', '65f', '66f', '67f', '68f', '69f', '70f', '71f', '72f', '73f', '74f', '75f', '76f', '77f', '78f', '79f', '80f', '81f', '82f', '83f', '84f', '85f', '86f', '87f', '88f', '89f', '90f', '91f', '92f', '93f', '94f', '95f', '96f', '97f', '98f', '99f', '100f', '1g', '2g', '3g', '4g', '5g', '6g', '7g', '8g', '9g', '10g', '11g', '12g', '13g', '14g', '15g', '16g', '17g', '18g', '19g', '20g', '21g', '22g', '23g', '24g', '25g', '26g', '27g', '28g', '29g', '30g', '31g', '32g', '33g', '34g', '35g', '36g', '37g', '38g', '39g', '40g', '41g', '42g', '43g', '44g', '45g', '46g', '47g', '48g', '49g', '50g', '51g', '52g', '53g', '54g', '55g', '56g', '57g', '58g', '59g', '60g', '61g', '62g', '63g', '64g', '65g', '66g', '67g', '68g', '69g', '70g', '71g', '72g', '73g', '74g', '75g', '76g', '77g', '78g', '79g', '80g', '81g', '82g', '83g', '84g', '85g', '86g', '87g', '88g', '89g', '90g', '91g', '92g', '93g', '94g', '95g', '96g', '97g', '98g', '99g', '100g', '1h', '2h', '3h', '4h', '5h', '6h', '7h', '8h', '9h', '10h', '11h', '12h', '13h', '14h', '15h', '16h', '17h', '18h', '19h', '20h', '21h', '22h', '23h', '24h', '25h', '26h', '27h', '28h', '29h', '30h', '31h', '32h', '33h', '34h', '35h', '36h', '37h', '38h', '39h', '40h', '41h', '42h', '43h', '44h', '45h', '46h', '47h', '48h', '49h', '50h', '51h', '52h', '53h', '54h', '55h', '56h', '57h', '58h', '59h', '60h', '61h', '62h', '63h', '64h', '65h', '66h', '67h', '68h', '69h', '70h', '71h', '72h', '73h', '74h', '75h', '76h', '77h', '78h', '79h', '80h', '81h', '82h', '83h', '84h', '85h', '86h', '87h', '88h', '89h', '90h', '91h', '92h', '93h', '94h', '95h', '96h', '97h', '98h', '99h', '100h', '1i', '2i', '3i', '4i', '5i', '6i', '7i', '8i', '9i', '10i', '11i', '12i', '13i', '14i', '15i', '16i', '17i', '18i', '19i', '20i', '21i', '22i', '23i', '24i', '25i', '26i', '27i', '28i', '29i', '30i', '31i', '32i', '33i', '34i', '35i', '36i', '37i', '38i', '39i', '40i', '41i', '42i', '43i', '44i', '45i', '46i', '47i', '48i', '49i', '50i', '51i', '52i', '53i', '54i', '55i', '56i', '57i', '58i', '59i', '60i', '61i', '62i', '63i', '64i', '65i', '66i', '67i', '68i', '69i', '70i', '71i', '72i', '73i', '74i', '75i', '76i', '77i', '78i', '79i', '80i', '81i', '82i', '83i', '84i', '85i', '86i', '87i', '88i', '89i', '90i', '91i', '92i', '93i', '94i', '95i', '96i', '97i', '98i', '99i', '100i', '1j', '2j', '3j', '4j', '5j', '6j', '7j', '8j', '9j', '10j', '11j', '12j', '13j', '14j', '15j', '16j', '17j', '18j', '19j', '20j', '21j', '22j', '23j', '24j', '25j', '26j', '27j', '28j', '29j', '30j', '31j', '32j', '33j', '34j', '35j', '36j', '37j', '38j', '39j', '40j', '41j', '42j', '43j', '44j', '45j', '46j', '47j', '48j', '49j', '50j', '51j', '52j', '53j', '54j', '55j', '56j', '57j', '58j', '59j', '60j', '61j', '62j', '63j', '64j', '65j', '66j', '67j', '68j', '69j', '70j', '71j', '72j', '73j', '74j', '75j', '76j', '77j', '78j', '79j', '80j', '81j', '82j', '83j', '84j', '85j', '86j', '87j', '88j', '89j', '90j', '91j', '92j', '93j', '94j', '95j', '96j', '97j', '98j', '99j', '100j', '1k', '2k', '3k', '4k', '5k', '6k', '7k', '8k', '9k', '10k', '11k', '12k', '13k', '14k', '15k', '16k', '17k', '18k', '19k', '20k', '21k', '22k', '23k', '24k', '25k', '26k', '27k', '28k', '29k', '30k', '31k', '32k', '33k', '34k', '35k', '36k', '37k', '38k', '39k', '40k', '41k', '42k', '43k', '44k', '45k', '46k', '47k', '48k', '49k', '50k', '51k', '52k', '53k', '54k', '55k', '56k', '57k', '58k', '59k', '60k', '61k', '62k', '63k', '64k', '65k', '66k', '67k', '68k', '69k', '70k', '71k', '72k', '73k', '74k', '75k', '76k', '77k', '78k', '79k', '80k', '81k', '82k', '83k', '84k', '85k', '86k', '87k', '88k', '89k', '90k', '91k', '92k', '93k', '94k', '95k', '96k', '97k', '98k', '99k', '100k', '1l', '2l', '3l', '4l', '5l', '6l', '7l', '8l', '9l', '10l', '11l', '12l', '13l', '14l', '15l', '16l', '17l', '18l', '19l', '20l', '21l', '22l', '23l', '24l', '25l', '26l', '27l', '28l', '29l', '30l', '31l', '32l', '33l', '34l', '35l', '36l', '37l', '38l', '39l', '40l', '41l', '42l', '43l', '44l', '45l', '46l', '47l', '48l', '49l', '50l', '51l', '52l', '53l', '54l', '55l', '56l', '57l', '58l', '59l', '60l', '61l', '62l', '63l', '64l', '65l', '66l', '67l', '68l', '69l', '70l', '71l', '72l', '73l', '74l', '75l', '76l', '77l', '78l', '79l', '80l', '81l', '82l', '83l', '84l', '85l', '86l', '87l', '88l', '89l', '90l', '91l', '92l', '93l', '94l', '95l', '96l', '97l', '98l', '99l', '100l', '1m', '2m', '3m', '4m', '5m', '6m', '7m', '8m', '9m', '10m', '11m', '12m', '13m', '14m', '15m', '16m', '17m', '18m', '19m', '20m', '21m', '22m', '23m', '24m', '25m', '26m', '27m', '28m', '29m', '30m', '31m', '32m', '33m', '34m', '35m', '36m', '37m', '38m', '39m', '40m', '41m', '42m', '43m', '44m', '45m', '46m', '47m', '48m', '49m', '50m', '51m', '52m', '53m', '54m', '55m', '56m', '57m', '58m', '59m', '60m', '61m', '62m', '63m', '64m', '65m', '66m', '67m', '68m', '69m', '70m', '71m', '72m', '73m', '74m', '75m', '76m', '77m', '78m', '79m', '80m', '81m', '82m', '83m', '84m', '85m', '86m', '87m', '88m', '89m', '90m', '91m', '92m', '93m', '94m', '95m', '96m', '97m', '98m', '99m', '100m', '1n', '2n', '3n', '4n', '5n', '6n', '7n', '8n', '9n', '10n', '11n', '12n', '13n', '14n', '15n', '16n', '17n', '18n', '19n', '20n', '21n', '22n', '23n', '24n', '25n', '26n', '27n', '28n', '29n', '30n', '31n', '32n', '33n', '34n', '35n', '36n', '37n', '38n', '39n', '40n', '41n', '42n', '43n', '44n', '45n', '46n', '47n', '48n', '49n', '50n', '51n', '52n', '53n', '54n', '55n', '56n', '57n', '58n', '59n', '60n', '61n', '62n', '63n', '64n', '65n', '66n', '67n', '68n', '69n', '70n', '71n', '72n', '73n', '74n', '75n', '76n', '77n', '78n', '79n', '80n', '81n', '82n', '83n', '84n', '85n', '86n', '87n', '88n', '89n', '90n', '91n', '92n', '93n', '94n', '95n', '96n', '97n', '98n', '99n', '100n', '1o', '2o', '3o', '4o', '5o', '6o', '7o', '8o', '9o', '10o', '11o', '12o', '13o', '14o', '15o', '16o', '17o', '18o', '19o', '20o', '21o', '22o', '23o', '24o', '25o', '26o', '27o', '28o', '29o', '30o', '31o', '32o', '33o', '34o', '35o', '36o', '37o', '38o', '39o', '40o', '41o', '42o', '43o', '44o', '45o', '46o', '47o', '48o', '49o', '50o', '51o', '52o', '53o', '54o', '55o', '56o', '57o', '58o', '59o', '60o', '61o', '62o', '63o', '64o', '65o', '66o', '67o', '68o', '69o', '70o', '71o', '72o', '73o', '74o', '75o', '76o', '77o', '78o', '79o', '80o', '81o', '82o', '83o', '84o', '85o', '86o', '87o', '88o', '89o', '90o', '91o', '92o', '93o', '94o', '95o', '96o', '97o', '98o', '99o', '100o', '1p', '2p', '3p', '4p', '5p', '6p', '7p', '8p', '9p', '10p', '11p', '12p', '13p', '14p', '15p', '16p', '17p', '18p', '19p', '20p', '21p', '22p', '23p', '24p', '25p', '26p', '27p', '28p', '29p', '30p', '31p', '32p', '33p', '34p', '35p', '36p', '37p', '38p', '39p', '40p', '41p', '42p', '43p', '44p', '45p', '46p', '47p', '48p', '49p', '50p', '51p', '52p', '53p', '54p', '55p', '56p', '57p', '58p', '59p', '60p', '61p', '62p', '63p', '64p', '65p', '66p', '67p', '68p', '69p', '70p', '71p', '72p', '73p', '74p', '75p', '76p', '77p', '78p', '79p', '80p', '81p', '82p', '83p', '84p', '85p', '86p', '87p', '88p', '89p', '90p', '91p', '92p', '93p', '94p', '95p', '96p', '97p', '98p', '99p', '100p', '1q', '2q', '3q', '4q', '5q', '6q', '7q', '8q', '9q', '10q', '11q', '12q', '13q', '14q', '15q', '16q', '17q', '18q', '19q', '20q', '21q', '22q', '23q', '24q', '25q', '26q', '27q', '28q', '29q', '30q', '31q', '32q', '33q', '34q', '35q', '36q', '37q', '38q', '39q', '40q', '41q', '42q', '43q', '44q', '45q', '46q', '47q', '48q', '49q', '50q', '51q', '52q', '53q', '54q', '55q', '56q', '57q', '58q', '59q', '60q', '61q', '62q', '63q', '64q', '65q', '66q', '67q', '68q', '69q', '70q', '71q', '72q', '73q', '74q', '75q', '76q', '77q', '78q', '79q', '80q', '81q', '82q', '83q', '84q', '85q', '86q', '87q', '88q', '89q', '90q', '91q', '92q', '93q', '94q', '95q', '96q', '97q', '98q', '99q', '100q', '1r', '2r', '3r', '4r', '5r', '6r', '7r', '8r', '9r', '10r', '11r', '12r', '13r', '14r', '15r', '16r', '17r', '18r', '19r', '20r', '21r', '22r', '23r', '24r', '25r', '26r', '27r', '28r', '29r', '30r', '31r', '32r', '33r', '34r', '35r', '36r', '37r', '38r', '39r', '40r', '41r', '42r', '43r', '44r', '45r', '46r', '47r', '48r', '49r', '50r', '51r', '52r', '53r', '54r', '55r', '56r', '57r', '58r', '59r', '60r', '61r', '62r', '63r', '64r', '65r', '66r', '67r', '68r', '69r', '70r', '71r', '72r', '73r', '74r', '75r', '76r', '77r', '78r', '79r', '80r', '81r', '82r', '83r', '84r', '85r', '86r', '87r', '88r', '89r', '90r', '91r', '92r', '93r', '94r', '95r', '96r', '97r', '98r', '99r', '100r', '1s', '2s', '3s', '4s', '5s', '6s', '7s', '8s', '9s', '10s', '11s', '12s', '13s', '14s', '15s', '16s', '17s', '18s', '19s', '20s', '21s', '22s', '23s', '24s', '25s', '26s', '27s', '28s', '29s', '30s', '31s', '32s', '33s', '34s', '35s', '36s', '37s', '38s', '39s', '40s', '41s', '42s', '43s', '44s', '45s', '46s', '47s', '48s', '49s', '50s', '51s', '52s', '53s', '54s', '55s', '56s', '57s', '58s', '59s', '60s', '61s', '62s', '63s', '64s', '65s', '66s', '67s', '68s', '69s', '70s', '71s', '72s', '73s', '74s', '75s', '76s', '77s', '78s', '79s', '80s', '81s', '82s', '83s', '84s', '85s', '86s', '87s', '88s', '89s', '90s', '91s', '92s', '93s', '94s', '95s', '96s', '97s', '98s', '99s', '100s', '1t', '2t', '3t', '4t', '5t', '6t', '7t', '8t', '9t', '10t', '11t', '12t', '13t', '14t', '15t', '16t', '17t', '18t', '19t', '20t', '21t', '22t', '23t', '24t', '25t', '26t', '27t', '28t', '29t', '30t', '31t', '32t', '33t', '34t', '35t', '36t', '37t', '38t', '39t', '40t', '41t', '42t', '43t', '44t', '45t', '46t', '47t', '48t', '49t', '50t', '51t', '52t', '53t', '54t', '55t', '56t', '57t', '58t', '59t', '60t', '61t', '62t', '63t', '64t', '65t', '66t', '67t', '68t', '69t', '70t', '71t', '72t', '73t', '74t', '75t', '76t', '77t', '78t', '79t', '80t', '81t', '82t', '83t', '84t', '85t', '86t', '87t', '88t', '89t', '90t', '91t', '92t', '93t', '94t', '95t', '96t', '97t', '98t', '99t', '100t', '1u', '2u', '3u', '4u', '5u', '6u', '7u', '8u', '9u', '10u', '11u', '12u', '13u', '14u', '15u', '16u', '17u', '18u', '19u', '20u', '21u', '22u', '23u', '24u', '25u', '26u', '27u', '28u', '29u', '30u', '31u', '32u', '33u', '34u', '35u', '36u', '37u', '38u', '39u', '40u', '41u', '42u', '43u', '44u', '45u', '46u', '47u', '48u', '49u', '50u', '51u', '52u', '53u', '54u', '55u', '56u', '57u', '58u', '59u', '60u', '61u', '62u', '63u', '64u', '65u', '66u', '67u', '68u', '69u', '70u', '71u', '72u', '73u', '74u', '75u', '76u', '77u', '78u', '79u', '80u', '81u', '82u', '83u', '84u', '85u', '86u', '87u', '88u', '89u', '90u', '91u', '92u', '93u', '94u', '95u', '96u', '97u', '98u', '99u', '100u', '1v', '2v', '3v', '4v', '5v', '6v', '7v', '8v', '9v', '10v', '11v', '12v', '13v', '14v', '15v', '16v', '17v', '18v', '19v', '20v', '21v', '22v', '23v', '24v', '25v', '26v', '27v', '28v', '29v', '30v', '31v', '32v', '33v', '34v', '35v', '36v', '37v', '38v', '39v', '40v', '41v', '42v', '43v', '44v', '45v', '46v', '47v', '48v', '49v', '50v', '51v', '52v', '53v', '54v', '55v', '56v', '57v', '58v', '59v', '60v', '61v', '62v', '63v', '64v', '65v', '66v', '67v', '68v', '69v', '70v', '71v', '72v', '73v', '74v', '75v', '76v', '77v', '78v', '79v', '80v', '81v', '82v', '83v', '84v', '85v', '86v', '87v', '88v', '89v', '90v', '91v', '92v', '93v', '94v', '95v', '96v', '97v', '98v', '99v', '100v', '1w', '2w', '3w', '4w', '5w', '6w', '7w', '8w', '9w', '10w', '11w', '12w', '13w', '14w', '15w', '16w', '17w', '18w', '19w', '20w', '21w', '22w', '23w', '24w', '25w', '26w', '27w', '28w', '29w', '30w', '31w', '32w', '33w', '34w', '35w', '36w', '37w', '38w', '39w', '40w', '41w', '42w', '43w', '44w', '45w', '46w', '47w', '48w', '49w', '50w', '51w', '52w', '53w', '54w', '55w', '56w', '57w', '58w', '59w', '60w', '61w', '62w', '63w', '64w', '65w', '66w', '67w', '68w', '69w', '70w', '71w', '72w', '73w', '74w', '75w', '76w', '77w', '78w', '79w', '80w', '81w', '82w', '83w', '84w', '85w', '86w', '87w', '88w', '89w', '90w', '91w', '92w', '93w', '94w', '95w', '96w', '97w', '98w', '99w', '100w', '1x', '2x', '3x', '4x', '5x', '6x', '7x', '8x', '9x', '10x', '11x', '12x', '13x', '14x', '15x', '16x', '17x', '18x', '19x', '20x', '21x', '22x', '23x', '24x', '25x', '26x', '27x', '28x', '29x', '30x', '31x', '32x', '33x', '34x', '35x', '36x', '37x', '38x', '39x', '40x', '41x', '42x', '43x', '44x', '45x', '46x', '47x', '48x', '49x', '50x', '51x', '52x', '53x', '54x', '55x', '56x', '57x', '58x', '59x', '60x', '61x', '62x', '63x', '64x', '65x', '66x', '67x', '68x', '69x', '70x', '71x', '72x', '73x', '74x', '75x', '76x', '77x', '78x', '79x', '80x', '81x', '82x', '83x', '84x', '85x', '86x', '87x', '88x', '89x', '90x', '91x', '92x', '93x', '94x', '95x', '96x', '97x', '98x', '99x', '100x', '1y', '2y', '3y', '4y', '5y', '6y', '7y', '8y', '9y', '10y', '11y', '12y', '13y', '14y', '15y', '16y', '17y', '18y', '19y', '20y', '21y', '22y', '23y', '24y', '25y', '26y', '27y', '28y', '29y', '30y', '31y', '32y', '33y', '34y', '35y', '36y', '37y', '38y', '39y', '40y', '41y', '42y', '43y', '44y', '45y', '46y', '47y', '48y', '49y', '50y', '51y', '52y', '53y', '54y', '55y', '56y', '57y', '58y', '59y', '60y', '61y', '62y', '63y', '64y', '65y', '66y', '67y', '68y', '69y', '70y', '71y', '72y', '73y', '74y', '75y', '76y', '77y', '78y', '79y', '80y', '81y', '82y', '83y', '84y', '85y', '86y', '87y', '88y', '89y', '90y', '91y', '92y', '93y', '94y', '95y', '96y', '97y', '98y', '99y', '100y', '1z', '2z', '3z', '4z', '5z', '6z', '7z', '8z', '9z', '10z', '11z', '12z', '13z', '14z', '15z', '16z', '17z', '18z', '19z', '20z', '21z', '22z', '23z', '24z', '25z', '26z', '27z', '28z', '29z', '30z', '31z', '32z', '33z', '34z', '35z', '36z', '37z', '38z', '39z', '40z', '41z', '42z', '43z', '44z', '45z', '46z', '47z', '48z', '49z', '50z', '51z', '52z', '53z', '54z', '55z', '56z', '57z', '58z', '59z', '60z', '61z', '62z', '63z', '64z', '65z', '66z', '67z', '68z', '69z', '70z', '71z', '72z', '73z', '74z', '75z', '76z', '77z', '78z', '79z', '80z', '81z', '82z', '83z', '84z', '85z', '86z', '87z', '88z', '89z', '90z', '91z', '92z', '93z', '94z', '95z', '96z', '97z', '98z', '99z', '100z']]; node-gulp-4.0.2+~cs38.20.35/benchmark/fixtures/med.js000066400000000000000000000014421415667007300217470ustar00rootroot00000000000000module.exports = [[ '1a', '2a', '3a', '4a', '5a', '1b', '2b', '3b', '4b', '5b', '1c', '2c', '3c', '4c', '5c', '1d', '2d', '3d', '4d', '5d', '1e', '2e', '3e', '4e', '5e', '1f', '2f', '3f', '4f', '5f', '1g', '2g', '3g', '4g', '5g', '1h', '2h', '3h', '4h', '5h', '1i', '2i', '3i', '4i', '5i', '1j', '2j', '3j', '4j', '5j', '1k', '2k', '3k', '4k', '5k', '1l', '2l', '3l', '4l', '5l', '1m', '2m', '3m', '4m', '5m', '1n', '2n', '3n', '4n', '5n', '1o', '2o', '3o', '4o', '5o', '1p', '2p', '3p', '4p', '5p', '1q', '2q', '3q', '4q', '5q', '1r', '2r', '3r', '4r', '5r', '1s', '2s', '3s', '4s', '5s', '1t', '2t', '3t', '4t', '5t', '1u', '2u', '3u', '4u', '5u', '1v', '2v', '3v', '4v', '5v', '1w', '2w', '3w', '4w', '5w', '1x', '2x', '3x', '4x', '5x', '1y', '2y', '3y', '4y', '5y', '1z', '2z', '3z', '4z', '5z'] ] node-gulp-4.0.2+~cs38.20.35/benchmark/fixtures/short.js000066400000000000000000000002311415667007300223340ustar00rootroot00000000000000module.exports = [ ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] ]; node-gulp-4.0.2+~cs38.20.35/benchmark/index.js000077500000000000000000000003011415667007300204340ustar00rootroot00000000000000'use strict'; var Suite = require('benchmarked'); var suite = new Suite({ result: false, fixtures: 'fixtures/*.js', add: 'code/{arr*-map,native}.js', cwd: __dirname }); suite.run(); node-gulp-4.0.2+~cs38.20.35/benchmark/last.md000066400000000000000000000010551415667007300202600ustar00rootroot00000000000000#1: long.js arr-map.js x 17,326 ops/sec ±0.74% (90 runs sampled) array-map.js x 15,219 ops/sec ±0.72% (97 runs sampled) native.js x 14,985 ops/sec ±0.66% (93 runs sampled) #2: med.js arr-map.js x 356,497 ops/sec ±0.79% (90 runs sampled) array-map.js x 285,448 ops/sec ±0.78% (95 runs sampled) native.js x 284,534 ops/sec ±0.82% (97 runs sampled) #3: short.js arr-map.js x 1,576,773 ops/sec ±0.72% (93 runs sampled) array-map.js x 1,129,016 ops/sec ±0.67% (97 runs sampled) native.js x 1,141,300 ops/sec ±0.71% (97 runs sampled) node-gulp-4.0.2+~cs38.20.35/benchmark/support.js000066400000000000000000000001471415667007300210460ustar00rootroot00000000000000var braces = require('braces'); console.log(braces('{a..z}')); console.log(braces('{1..100}{a..z}')); node-gulp-4.0.2+~cs38.20.35/index.js000066400000000000000000000007071415667007300165110ustar00rootroot00000000000000/*! * arr-map * * Copyright (c) 2015, 2017, Jon Schlinkert. * Released under the MIT License. */ 'use strict'; var iterator = require('make-iterator'); module.exports = function map(arr, fn, thisArg) { if (arr == null) return []; fn = iterator(fn, thisArg); var len = arr.length; var res = new Array(len); for (var i = 0; i < len; i++) { res[i] = fn(arr[i], i, arr); } return res; }; node-gulp-4.0.2+~cs38.20.35/package.json000066400000000000000000000023271415667007300173320ustar00rootroot00000000000000{ "name": "arr-map", "description": "Faster, node.js focused alternative to JavaScript's native array map.", "version": "2.0.2", "homepage": "https://github.com/jonschlinkert/arr-map", "author": "Jon Schlinkert (https://github.com/jonschlinkert)", "repository": "jonschlinkert/arr-map", "bugs": { "url": "https://github.com/jonschlinkert/arr-map/issues" }, "license": "MIT", "files": [ "index.js" ], "main": "index.js", "engines": { "node": ">=0.10.0" }, "scripts": { "test": "mocha", "benchmark": "node benchmark" }, "dependencies": { "make-iterator": "^1.0.0" }, "devDependencies": { "array-map": "^0.0.0", "benchmarked": "^0.2.5", "braces": "^2.0.3", "chalk": "^1.1.3", "glob": "^7.1.1", "gulp-format-md": "^0.1.11", "micromatch": "^2.3.11", "mocha": "^3.2.0" }, "keywords": [ "arr", "array", "map" ], "verb": { "toc": false, "layout": "default", "tasks": [ "readme" ], "related": { "list": [ "arr-diff", "arr-filter", "arr-flatten", "arr-reduce" ] }, "plugins": [ "gulp-format-md" ], "lint": { "reflinks": true } } } node-gulp-4.0.2+~cs38.20.35/test.js000066400000000000000000000011731415667007300163570ustar00rootroot00000000000000/*! * arr-map * * Copyright (c) 2014-2015, Jon Schlinkert. * Licensed under the MIT License. */ 'use strict'; require('mocha'); var assert = require('assert'); var map = require('./'); it('should iterate over the elements in an array:', function () { var actual = map(['a', 'b', 'c'], function (ele) { return ele + ele; }); assert.deepEqual(actual, ['aa', 'bb', 'cc']); }); it('should expose the index as the second param:', function () { var actual = map(['a', 'b', 'c'], function (ele, i) { return i + ele; }); assert.deepEqual(actual, ['0a', '1b', '2c']); });