Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

is-svg

sindresorhus8.1mMIT6.1.0TypeScript support: included

Check if a string is SVG

svg, vector, graphics, image, picture, type, detect, check, is, string

readme

is-svg

Check if a string is SVG

Install

npm install is-svg

Usage

import isSvg from 'is-svg';

isSvg('<svg xmlns="http://www.w3.org/2000/svg"><path fill="#00CD9F"/></svg>');
//=> true

API

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.