index.js 135 B

123456789
  1. 'use strict';
  2. module.exports = function toFastProperties(obj) {
  3. function f() {}
  4. f.prototype = obj;
  5. new f();
  6. return;
  7. eval(obj);
  8. };