UNPKG

@iconify/utils

Version:

Common functions for working with Iconify icon sets used by various packages.

11 lines (8 loc) 262 B
'use strict'; 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; } } exports.getSVGViewBox = getSVGViewBox;