Files
to_docx/client/node_modules/@iconify/utils/lib/svg/viewbox.js
T
Chen Xiao 0b64e2de94 First commit.
Signed-off-by: Chen Xiao <abigwc@gmail.com>
2026-05-08 14:43:16 +08:00

9 lines
252 B
JavaScript

/**
* Get viewBox from string
*/
function getSVGViewBox(value) {
const result = value.trim().split(/\s+/).map(Number);
if (result.length === 4 && result.reduce((prev, value) => prev && !isNaN(value), true)) return result;
}
export { getSVGViewBox };