2017-12-15 10:56:14 -08:00
|
|
|
'use strict';
|
2021-05-08 05:39:21 -07:00
|
|
|
|
|
|
|
const mimicFn = (to, from) => {
|
|
|
|
for (const prop of Reflect.ownKeys(from)) {
|
2017-12-15 10:56:14 -08:00
|
|
|
Object.defineProperty(to, prop, Object.getOwnPropertyDescriptor(from, prop));
|
|
|
|
}
|
2021-05-08 05:39:21 -07:00
|
|
|
|
|
|
|
return to;
|
2017-12-15 10:56:14 -08:00
|
|
|
};
|
2021-05-08 05:39:21 -07:00
|
|
|
|
|
|
|
module.exports = mimicFn;
|
|
|
|
// TODO: Remove this for the next major release
|
|
|
|
module.exports.default = mimicFn;
|