setAttributesWithAttributesAndNonce.js 271 B

123456789
  1. "use strict";
  2. /* istanbul ignore next */
  3. function setAttributesWithoutAttributes(styleElement, attributes) {
  4. Object.keys(attributes).forEach(function (key) {
  5. styleElement.setAttribute(key, attributes[key]);
  6. });
  7. }
  8. module.exports = setAttributesWithoutAttributes;