1.1.4 • Published 8 years ago
context-proxy v1.1.4
context-proxy
context-proxy traps calls in exactly the same way as normal js Proxy, but this context of every trap will be context parameter of constructor or function call.
Usage
import CProxy from 'context-proxy';
const target = {}; // proxy target
const context = {/* context */};
const proxy = CProxy(target, {/* handlers */}, context);
// or with new operator
const proxy = new CProxy(target, {/* handlers */}, context);