Initial commit
This commit is contained in:
21
node_modules/collection-visit/LICENSE
generated
vendored
Normal file
21
node_modules/collection-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.
|
||||
30
node_modules/collection-visit/index.js
generated
vendored
Normal file
30
node_modules/collection-visit/index.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
/*!
|
||||
* collection-visit <https://github.com/jonschlinkert/collection-visit>
|
||||
*
|
||||
* Copyright (c) 2015, 2017, Jon Schlinkert.
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var visit = require('object-visit');
|
||||
var mapVisit = require('map-visit');
|
||||
|
||||
module.exports = function(collection, method, val) {
|
||||
var result;
|
||||
|
||||
if (typeof val === 'string' && (method in collection)) {
|
||||
var args = [].slice.call(arguments, 2);
|
||||
result = collection[method].apply(collection, args);
|
||||
} else if (Array.isArray(val)) {
|
||||
result = mapVisit.apply(null, arguments);
|
||||
} else {
|
||||
result = visit.apply(null, arguments);
|
||||
}
|
||||
|
||||
if (typeof result !== 'undefined') {
|
||||
return result;
|
||||
}
|
||||
|
||||
return collection;
|
||||
};
|
||||
49
node_modules/collection-visit/package.json
generated
vendored
Normal file
49
node_modules/collection-visit/package.json
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"name": "collection-visit",
|
||||
"description": "Visit a method over the items in an object, or map visit over the objects in an array.",
|
||||
"version": "1.0.0",
|
||||
"homepage": "https://github.com/jonschlinkert/collection-visit",
|
||||
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
|
||||
"repository": "jonschlinkert/collection-visit",
|
||||
"license": "MIT",
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"main": "index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"map-visit": "^1.0.0",
|
||||
"object-visit": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"clone-deep": "^0.2.4",
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-eslint": "^3.0.1",
|
||||
"gulp-format-md": "^0.1.12",
|
||||
"gulp-istanbul": "^1.1.1",
|
||||
"gulp-mocha": "^3.0.0",
|
||||
"mocha": "^3.2.0"
|
||||
},
|
||||
"verb": {
|
||||
"related": {
|
||||
"list": [
|
||||
"base-methods",
|
||||
"map-visit",
|
||||
"object-visit"
|
||||
]
|
||||
},
|
||||
"toc": false,
|
||||
"layout": "default",
|
||||
"tasks": [
|
||||
"readme"
|
||||
],
|
||||
"plugins": [
|
||||
"gulp-format-md"
|
||||
],
|
||||
"lint": {
|
||||
"reflinks": true
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user