9 lines
219 B
JavaScript
9 lines
219 B
JavaScript
const ChainedMap = require('./ChainedMap');
|
|
|
|
module.exports = class extends ChainedMap {
|
|
constructor(parent) {
|
|
super(parent);
|
|
this.extend(['assetFilter', 'hints', 'maxAssetSize', 'maxEntrypointSize']);
|
|
}
|
|
};
|