wallet-core/node_modules/to-fast-properties/index.js
2016-10-10 03:43:44 +02:00

9 lines
135 B
JavaScript

'use strict';
module.exports = function toFastProperties(obj) {
function f() {}
f.prototype = obj;
new f();
return;
eval(obj);
};