wrap-exec
v1.0.2
Published
Wrap function calls with specified function
Downloads
4
Readme
wrap-exec
Wrap function calls with specified function
Installation
$ npm i wrap-exec
Usage
import wrapExec from 'wrap-exec';
const log = console.log.bind(console);
eval(wrapExec('log', 'function add(a, b) { return a + b; } add(1, 2);')); // 3