Files
Camilou.fr/VUEJS/myapp/node_modules/@iconify/utils/lib/svg/viewbox.js
T
Camilla Schoeser 6a71f91e2f ajout du site
2026-05-29 21:38:59 +02: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 };