functions_.functions(object)
Alias: methods
Returns a sorted list of the names of every method in an object â that is to say, the name of every function property of the object.
_.functions(_); => ["all", "any", "bind", "bindAll", "clone", "compact", "compose" ...
Please login to continue.