Module

x/lodash_es/mod.ts>functionsIn

lodash for deno use
Latest
function functionsIn
import { functionsIn } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/mod.ts";

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.