fix(utils): 判断是否为number不够严谨

This commit is contained in:
roymondchen 2022-04-20 16:28:07 +08:00 committed by jia000
parent 1c8829fac9
commit 2647ace396

View File

@ -207,4 +207,4 @@ export const isPop = (node: MNode): boolean => Boolean(node.type?.toLowerCase().
export const isPage = (node: MNode): boolean => Boolean(node.type?.toLowerCase() === NodeType.PAGE);
export const isNumber = (value: string) => /^(\d|\.)+$/.test(value);
export const isNumber = (value: string) => /^(-?\d+)(\.\d+)?$/.test(value);