UNPKG

219 BJavaScriptView Raw
1const ChainedMap = require('./ChainedMap');
2
3module.exports = class extends ChainedMap {
4 constructor(parent) {
5 super(parent);
6 this.extend(['assetFilter', 'hints', 'maxAssetSize', 'maxEntrypointSize']);
7 }
8};