UNPKG

es-query

Version:

An utilitarian library for DOM manipulation using ECMAScript 7 Function Bind Syntax

10 lines (8 loc) 166 B
function attr (name, value = null) { if (!value) { return this.getAttribute(name); } this.setAttribute(name, value); return this; } export default attr;