16 lines
450 B
JavaScript
16 lines
450 B
JavaScript
'use strict';
|
|
|
|
"use strict";
|
|
function parseFunctionBody(fn) {
|
|
const fnStr = fn.toString();
|
|
const bodyStart = fnStr.indexOf("{");
|
|
const bodyEnd = fnStr.lastIndexOf("}");
|
|
if (bodyStart === -1 || bodyEnd === -1) {
|
|
throw new Error("getFunctionBody: No body found in function definition");
|
|
}
|
|
return fnStr.slice(bodyStart + 1, bodyEnd).trim();
|
|
}
|
|
|
|
exports.parseFunctionBody = parseFunctionBody;
|
|
//# sourceMappingURL=parseFunctionBody.js.map
|