UNPKG
is-svg
Version:
latest (6.1.0)
6.1.0
6.0.0
5.1.0
5.0.1
5.0.0
4.4.0
4.3.2
4.3.1
4.3.0
4.2.2
4.2.1
4.2.0
4.1.0
4.0.0
3.0.0
2.1.0
2.0.1
2.0.0
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
0.1.2
0.1.1
0.1.0
Check if a string is SVG
github.com/sindresorhus/is-svg
sindresorhus/is-svg
is-svg
/
index.d.ts
13 lines
(10 loc)
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** Check if a string is [SVG](https://en.wikipedia.org/wiki/Scalable_Vector_Graphics).
@example
``` import isSvg from 'is-svg'; isSvg('<svg xmlns="http://www.w3.org/2000/svg"><path fill="#00CD9F"/></svg>'); //=> true ``` */
export
default
function
isSvg
(
string
:
string
):
boolean
;