UNPKG

findex

Version:

Indexes locations of functions inside a project by the md5 hash of the function string to find them later.

9 lines (8 loc) 167 B
var foo = function ff (a, b, c) { var bar = function () { console.log('logged from inside foo'); }; return bar; }; exports.foo = foo; exports.bar = foo();