mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
5 lines
139 B
TypeScript
5 lines
139 B
TypeScript
|
export const isValidWidthUnit = (val: string) =>
|
||
|
['px', 'rem', 'em', 'vw', '%', 'vmin', 'vmax'].some(unit =>
|
||
|
val.endsWith(unit),
|
||
|
)
|