index.js
1 'use strict'; 2 3 const mimicFn = (to, from) => { 4 for (const prop of Reflect.ownKeys(from)) { 5 Object.defineProperty(to, prop, Object.getOwnPropertyDescriptor(from, prop)); 6 } 7 8 return to; 9 }; 10 11 module.exports = mimicFn; 12 // TODO: Remove this for the next major release 13 module.exports.default = mimicFn;