Files
red_de_investigacion_front/node_modules/webpack-chain/src/Performance.js
T

9 lines
219 B
JavaScript
Raw Normal View History

2020-01-14 20:43:08 -06:00
const ChainedMap = require('./ChainedMap');
module.exports = class extends ChainedMap {
constructor(parent) {
super(parent);
this.extend(['assetFilter', 'hints', 'maxAssetSize', 'maxEntrypointSize']);
}
};