wallet-core/node_modules/to-fast-properties/index.js

9 lines
135 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
'use strict';
module.exports = function toFastProperties(obj) {
function f() {}
f.prototype = obj;
new f();
return;
eval(obj);
};