UNPKG

@portis/web3

Version:

Portis Web3 SDK

13 lines 335 B
export var mockify = function (obj) { return new Proxy(obj, { get: function (target, prop) { if (target[prop] instanceof Function) { return function () { }; } else { return undefined; } }, }); }; //# sourceMappingURL=mockify.js.map