functions.js 274 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import isFunction from './isFunction.js'; // Return a sorted list of the function names available on the object. export default function functions(obj) { var names = []; for (var key in obj) { if (isFunction(obj[key])) names.push(key); } return names.sort(); }