github-pages-deploy-action/node_modules/mimic-fn/index.js

14 lines
300 B
JavaScript
Raw Normal View History

2020-01-28 13:07:56 +08:00
'use strict';
2020-03-31 20:40:00 +08:00
const mimicFn = (to, from) => {
for (const prop of Reflect.ownKeys(from)) {
2020-01-28 13:07:56 +08:00
Object.defineProperty(to, prop, Object.getOwnPropertyDescriptor(from, prop));
}
return to;
};
2020-03-31 20:40:00 +08:00
module.exports = mimicFn;
// TODO: Remove this for the next major release
module.exports.default = mimicFn;