"use strict"; module.exports = ($attributeSet) => ($attributesToRemove) => { let newAttributeSet = { ... $attributeSet() }; for (let $attribute of $attributesToRemove()) { delete newAttributeSet[$attribute()]; } return newAttributeSet; };