feat: image component

This commit is contained in:
chenjiahan
2020-07-05 08:33:36 +08:00
parent 12faaa2179
commit b79e59bc18
15 changed files with 1041 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
export function isNumeric(val: string): boolean {
return /^\d+(\.\d+)?$/.test(val);
}
export function isNaN(val: number): val is typeof NaN {
if (Number.isNaN) {
return Number.isNaN(val);
}
// eslint-disable-next-line no-self-compare
return val !== val;
}