Files
infocom-systems-design/node_modules/@iconify/utils/lib/svg/viewbox.js
2025-10-03 22:27:28 +03: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 };