Skip to content
代码片段 群组 项目
提交 5a4783fd 编辑于 作者: Mehrad Malayeri's avatar Mehrad Malayeri 提交者: Timotej Ecimovic
浏览文件
上级 1c5e1719
No related branches found
No related tags found
无相关合并请求
......@@ -176,6 +176,11 @@ function checkBoundsFloat(defaultValue, min, max) {
return defaultValue >= min && defaultValue <= max
}
function isValidSignedNumberString(value) {
return /^(0x)?[\dA-F]+$/i.test(value) || Number.isInteger(Number(value));
}
// exports
exports.validateAttribute = validateAttribute
exports.validateEndpoint = validateEndpoint
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册