Current section

Files

Jump to
udia assets node_modules to-fast-properties index.js
Raw

assets/node_modules/to-fast-properties/index.js

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