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) 148 B
function foo (a, b, c) { function bar () { console.log('logged from inside bar'); } return bar; } exports.foo = foo; exports.bar = foo();