@sendbird/uikit-react
Version:
Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
18 lines (15 loc) • 362 B
JavaScript
;
var pxToNumber = function (px) {
if (typeof px === 'number') {
return px;
}
if (typeof px === 'string') {
var parsed = Number.parseFloat(px);
if (!Number.isNaN(parsed)) {
return parsed;
}
}
return NaN;
};
exports.pxToNumber = pxToNumber;
//# sourceMappingURL=bundle-C99t7tzf.js.map