mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
feat: 新增isPage,isNumber方法
This commit is contained in:
parent
575adb9a5e
commit
9c83a540da
@ -18,7 +18,7 @@
|
||||
|
||||
import moment from 'moment';
|
||||
|
||||
import { MNode } from '@tmagic/schema';
|
||||
import { MNode, NodeType } from '@tmagic/schema';
|
||||
|
||||
export const sleep = (ms: number): Promise<void> =>
|
||||
new Promise((resolve) => {
|
||||
@ -204,3 +204,7 @@ export const getUrlParam = (param: string, url?: string) => {
|
||||
};
|
||||
|
||||
export const isPop = (node: MNode): boolean => Boolean(node.type?.toLowerCase().endsWith('pop'));
|
||||
|
||||
export const isPage = (node: MNode): boolean => Boolean(node.type?.toLowerCase() === NodeType.PAGE);
|
||||
|
||||
export const isNumber = (value: string) => /^(\d|\.)+$/.test(value);
|
||||
|
Loading…
x
Reference in New Issue
Block a user