UNPKG

is-svg

Version:
19 lines (12 loc) 276 B
# is-svg > Check if a string is [SVG](https://en.wikipedia.org/wiki/Scalable_Vector_Graphics) ## Install ```sh npm install is-svg ``` ## Usage ```js import isSvg from 'is-svg'; isSvg('<svg xmlns="http://www.w3.org/2000/svg"><path fill="#00CD9F"/></svg>'); //=> true ```