- Add serve.py to resolve clean Quartz URLs to .html files - Regenerate Quartz site with correct baseUrl http://100.118.5.51:9120 - 196 HTML files emitted; all internal links now resolve
15 lines
308 B
JavaScript
15 lines
308 B
JavaScript
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;
|
|
|
|
});
|