innersource
v0.0.2
Published
Returns inner source of a function as a string.
Readme
innersource
module to get the source of a function as a string
Usage
function test1() {
console.log('hello');
}
console.log(innersource(test1)); // console.log('hello');