Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/collection-visit/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

30 lines (24 sloc)
709 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* 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; | |
}; |