7 lines
154 B
JavaScript
7 lines
154 B
JavaScript
'use strict';
|
|
'worklet';
|
|
|
|
export const isLength = value => {
|
|
return value.endsWith('px') || !isNaN(Number(value));
|
|
};
|
|
//# sourceMappingURL=guards.js.map
|