UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines (10 loc) 252 B
/** * * @param {function} f * @returns {string} */ export function extractFunctionBody(f) { const entire = f.toString(); const body = entire.slice(entire.indexOf("{") + 1, entire.lastIndexOf("}")).trim(); return body; }