Check if an attribute name is an SVG attribute
npm install is-svg-attributeCheck if an attribute name is an SVG attribute.
```
npm install is-svg-attribute
`js
var isSVGAttribute = require('is-svg-attribute')
isSVGAttribute('cx') // true
isSVGAttribute('gradientTransform') // true
isSVGAttribute('class') // false
``