mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
9 lines
135 B
JavaScript
9 lines
135 B
JavaScript
'use strict';
|
|
module.exports = function toFastProperties(obj) {
|
|
function f() {}
|
|
f.prototype = obj;
|
|
new f();
|
|
return;
|
|
eval(obj);
|
|
};
|