UNPKG

283 BTypeScriptView Raw
1/**
2Check if a string is [SVG](https://en.wikipedia.org/wiki/Scalable_Vector_Graphics).
3
4@example
5```
6import isSvg from 'is-svg';
7
8isSvg('<svg xmlns="http://www.w3.org/2000/svg"><path fill="#00CD9F"/></svg>');
9//=> true
10```
11*/
12export default function isSvg(string: string): boolean;