aboutsummaryrefslogtreecommitdiff
path: root/node_modules/to-fast-properties/index.js
blob: 33e594dcd072dbf1ffb9e6a9ac25729a93ccd0de (plain)
1
2
3
4
5
6
7
8
'use strict';
module.exports = function toFastProperties(obj) {
	function f() {}
	f.prototype = obj;
	new f();
	return;
	eval(obj);
};