UNPKG

@realfavicongenerator/generate-favicon

Version:
11 lines (10 loc) 463 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.filterDoctypeOut = void 0; // There is an issue with the doctype declaration in the SVG file when running on Node with svgdom. // See https://github.com/RealFaviconGenerator/realfavicongenerator/issues/507 const filterDoctypeOut = (svg) => { const doctypeRegex = /<!DOCTYPE[^>]*>/gi; return svg.replace(doctypeRegex, ''); }; exports.filterDoctypeOut = filterDoctypeOut;