UNPKG

@dicebear/avatars

Version:
16 lines (15 loc) 397 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const svgson_1 = require("svgson"); /** * @deprecated */ class Parser { static parse(svg) { return typeof svg === 'string' ? (0, svgson_1.parseSync)(svg) : svg; } static stringify(svg) { return typeof svg === 'string' ? svg : (0, svgson_1.stringify)(svg); } } exports.default = Parser;