mirror of
https://gitea.com/actions/setup-maven.git
synced 2025-11-10 03:06:22 +08:00
chore: update dependencies
This commit is contained in:
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