UNPKG

@voerkai18n/runtime

Version:
10 lines (9 loc) 220 B
import { isNumber } from "flex-tools/typecheck/isNumber"; /** * 文本id必须是一个数字 * @param {*} content * @returns */ export function isMessageId(content:string){ return isNumber(content) }