@pipepack/enhanced-resolver
Version:
yet, reimplement enhanced-resolve with the idea 'simple is best'.
17 lines (15 loc) • 362 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.assign = assign;
/**
* @description - extract override with better type declaration, save type byte
* @author - huang.jian <hjj491229492@hotmail.com>
*/
function assign(request, override) {
return { ...request,
...override
};
}
//# sourceMappingURL=assign.js.map