Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bytebase/bytebase
/ validateNumber
Function
validateNumber
frontend/src/plugins/cel/logic/validate.ts:25–27 ·
view source on GitHub ↗
(num: unknown)
Source
from the content-addressed store, hash-verified
23
return
str.trim().length > 0;
24
};
25
const
validateNumber = (num: unknown): boolean => {
26
return
isNumber(num);
27
};
28
const
validateArrayValues = (
29
array: unknown,
30
predicate: (value: unknown) => boolean
Callers
1
validateCondition
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected