An ES2015 Proxy that forwards every available trap to a new target.
proxy-forwarder
implements all traps listed at MDN for an object, forwarding every trappable operation to a target object. Requires ES2015 Proxy support. In node, that means passing --harmony_proxies
as a command line argument.
npm i --save proxy-forwarder
import forward from 'proxy-forwarder';
let object = { x: 5 };
let mirror = forward(object);
mirror.x = 6;
assert(object.x === 6);
MIT © Martin Svanberg