Latest
function functionsIn
import { functionsIn } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/object.js";

Creates an array of function property names from own and inherited enumerable properties of object.

Examples

function Foo() { this.a = _.constant('a'); this.b = _.constant('b'); }

Foo.prototype.c = _.constant('c');

_.functionsIn(new Foo); // => ['a', 'b', 'c']

Parameters

object

The object to inspect.