Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anthonyshort/is-svg-attribute

Check if a string is an SVG attribute
https://github.com/anthonyshort/is-svg-attribute

Last synced: 24 days ago
JSON representation

Check if a string is an SVG attribute

Awesome Lists containing this project

README

        

# is-svg-attribute

Check if an attribute name is an SVG attribute.

```
npm install is-svg-attribute
```

### API

```js
var isSVGAttribute = require('is-svg-attribute')

isSVGAttribute('cx') // true
isSVGAttribute('gradientTransform') // true
isSVGAttribute('class') // false
```