UNPKG

tricks

Version:
11 lines (9 loc) 201 B
// css - apply properties to an element import each from './each.js'; export default (elements, props) => each(elements, el => { for (const key in props) { el.style[key] = props[key]; } }) ;