Remove line breaks in arrays
This commit is contained in:
@ -42,10 +42,7 @@ export function setAttributes(element, attributes) {
|
||||
return;
|
||||
}
|
||||
|
||||
Object.entries(attributes).forEach(([
|
||||
key,
|
||||
value,
|
||||
]) => {
|
||||
Object.entries(attributes).forEach(([key, value]) => {
|
||||
element.setAttribute(key, value);
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user