UNPKG

rspack-chain

Version:

<p> <a href="https://npmjs.com/package/rspack-chain?activeTab=readme"> <img src="https://img.shields.io/npm/v/rspack-chain?style=flat-square&colorA=564341&colorB=EDED91" alt="npm version" /> </a> <a href="https://nodejs.org/en/about/previous-rele

13 lines (11 loc) 245 B
module.exports = class extends Function { constructor() { super(); return new Proxy(this, { apply: (target, thisArg, args) => target.classCall(...args), }); } classCall() { throw new Error('not implemented'); } };