Initial commit
This commit is contained in:
21
node_modules/map-visit/LICENSE
generated
vendored
Normal file
21
node_modules/map-visit/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The 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.
|
||||
37
node_modules/map-visit/index.js
generated
vendored
Normal file
37
node_modules/map-visit/index.js
generated
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
'use strict';
|
||||
|
||||
var util = require('util');
|
||||
var visit = require('object-visit');
|
||||
|
||||
/**
|
||||
* Map `visit` over an array of objects.
|
||||
*
|
||||
* @param {Object} `collection` The context in which to invoke `method`
|
||||
* @param {String} `method` Name of the method to call on `collection`
|
||||
* @param {Object} `arr` Array of objects.
|
||||
*/
|
||||
|
||||
module.exports = function mapVisit(collection, method, val) {
|
||||
if (isObject(val)) {
|
||||
return visit.apply(null, arguments);
|
||||
}
|
||||
|
||||
if (!Array.isArray(val)) {
|
||||
throw new TypeError('expected an array: ' + util.inspect(val));
|
||||
}
|
||||
|
||||
var args = [].slice.call(arguments, 3);
|
||||
|
||||
for (var i = 0; i < val.length; i++) {
|
||||
var ele = val[i];
|
||||
if (isObject(ele)) {
|
||||
visit.apply(null, [collection, method, ele].concat(args));
|
||||
} else {
|
||||
collection[method].apply(collection, [ele].concat(args));
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function isObject(val) {
|
||||
return val && (typeof val === 'function' || (!Array.isArray(val) && typeof val === 'object'));
|
||||
}
|
||||
49
node_modules/map-visit/package.json
generated
vendored
Normal file
49
node_modules/map-visit/package.json
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"name": "map-visit",
|
||||
"description": "Map `visit` over an array of objects.",
|
||||
"version": "1.0.0",
|
||||
"homepage": "https://github.com/jonschlinkert/map-visit",
|
||||
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||
"repository": "jonschlinkert/map-visit",
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"main": "index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"object-visit": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"clone-deep": "^0.2.4",
|
||||
"extend-shallow": "^2.0.1",
|
||||
"gulp-format-md": "^0.1.12",
|
||||
"lodash": "^4.17.4",
|
||||
"mocha": "^3.2.0"
|
||||
},
|
||||
"verb": {
|
||||
"toc": false,
|
||||
"layout": "default",
|
||||
"tasks": [
|
||||
"readme"
|
||||
],
|
||||
"plugins": [
|
||||
"gulp-format-md"
|
||||
],
|
||||
"lint": {
|
||||
"reflinks": true
|
||||
},
|
||||
"related": {
|
||||
"list": [
|
||||
"collection-visit",
|
||||
"object-visit"
|
||||
]
|
||||
},
|
||||
"reflinks": [
|
||||
"verb",
|
||||
"verb-generate-readme"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user