10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
"use strict";
|
|
|
|
/* istanbul ignore next */
|
|
function setAttributesWithoutAttributes(style, attributes) {
|
|
Object.keys(attributes).forEach(function (key) {
|
|
style.setAttribute(key, attributes[key]);
|
|
});
|
|
}
|
|
|
|
module.exports = setAttributesWithoutAttributes; |