mirror of
https://github.com/Azure/setup-helm.git
synced 2025-07-26 07:31:05 +00:00
v3 new release (#80)
This commit is contained in:
committed by
GitHub
parent
a767c8d3a1
commit
20d2b4f98d
14
node_modules/underscore/amd/functions.js
generated
vendored
Normal file
14
node_modules/underscore/amd/functions.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
define(['./isFunction'], function (isFunction) {
|
||||
|
||||
// Return a sorted list of the function names available on the object.
|
||||
function functions(obj) {
|
||||
var names = [];
|
||||
for (var key in obj) {
|
||||
if (isFunction(obj[key])) names.push(key);
|
||||
}
|
||||
return names.sort();
|
||||
}
|
||||
|
||||
return functions;
|
||||
|
||||
});
|
Reference in New Issue
Block a user