13 lines
252 B
JavaScript
13 lines
252 B
JavaScript
'use strict';
|
|
|
|
const mimicFn = (to, from) => {
|
|
for (const prop of Reflect.ownKeys(from)) {
|
|
Object.defineProperty(to, prop, Object.getOwnPropertyDescriptor(from, prop));
|
|
}
|
|
|
|
return to;
|
|
};
|
|
|
|
module.exports = mimicFn;
|
|
module.exports.default = mimicFn;
|