0.1.1 • Published 8 years ago

proxy-forwarder v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

proxy-forwarder

An ES2015 Proxy that forwards every available trap to a new target.

Build status

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.

Install

npm i --save proxy-forwarder

Example

import forward from 'proxy-forwarder';

let object = { x: 5 };
let mirror = forward(object);

mirror.x = 6;

assert(object.x === 6);

License

MIT © Martin Svanberg