UNPKG

283 BTypeScriptView Raw
1/// <reference types="node"/>
2
3/**
4 * Check if a string or buffer is [SVG](https://en.wikipedia.org/wiki/Scalable_Vector_Graphics).
5 *
6 * @param input - The data to check.
7 * @returns Whether `input` is SVG or not.
8 */
9export default function isSvg(input: string | Buffer): boolean;