You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
291 B
JavaScript
13 lines
291 B
JavaScript
var isFunction = require('./isFunction.js');
|
|
|
|
// 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();
|
|
}
|
|
|
|
module.exports = functions;
|