fuc-new/doc/node_modules/@iconify/utils/lib/svg/viewbox.js
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

9 lines
256 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$1) => prev && !isNaN(value$1), true)) return result;
}
export { getSVGViewBox };