astro-ghostcms/.pnpm-store/v3/files/2e/c5497f140159aa0dbad348faf6c...

9 lines
234 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
function getSVGViewBox(value) {
const result = value.trim().split(/\s+/).map(Number);
if (result.length === 4 && result.reduce((prev, value2) => prev && !isNaN(value2), true)) {
return result;
}
}
export { getSVGViewBox };