is-svg
v6.1.0
Published
Check if a string is SVG
Maintainers
Readme
is-svg
Check if a string is SVG
Install
npm install is-svgUsage
import isSvg from 'is-svg';
isSvg('<svg xmlns="http://www.w3.org/2000/svg"><path fill="#00CD9F"/></svg>');
//=> trueAPI
isSvg(string, options?)
options
Type: object
validate
Type: boolean
Default: true
Whether to validate the SVG as proper XML.
Turning this off can improve performance significantly.
