2022-01-21 08:28:41 +00:00
|
|
|
'use strict';
|
2022-06-08 10:36:39 +00:00
|
|
|
|
|
|
|
const mimicFn = (to, from) => {
|
|
|
|
for (const prop of Reflect.ownKeys(from)) {
|
2022-01-21 08:28:41 +00:00
|
|
|
Object.defineProperty(to, prop, Object.getOwnPropertyDescriptor(from, prop));
|
|
|
|
}
|
|
|
|
|
|
|
|
return to;
|
|
|
|
};
|
2022-06-08 10:36:39 +00:00
|
|
|
|
|
|
|
module.exports = mimicFn;
|
|
|
|
// TODO: Remove this for the next major release
|
|
|
|
module.exports.default = mimicFn;
|