UNPKG
one-schema
Version:
latest (0.7.0)
0.7.0
0.6.0
0.5.1
0.5.0
0.4.4
0.4.3
0.4.2
0.4.1
0.4.0
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.2
0.2.1
0.1.1
0.0.4
one-schema object validator
github.com/tiancai-hq/one-schema
tiancai-hq/one-schema
one-schema
/
dist
/
core
/
builtin-validators
/
alphanumeric.js
4 lines
(3 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
= (
function
(
input
) {
return
typeof
input ===
'string'
&& input.
length
!==
0
&& !(
/[^0-9|a-z]/i
.
test
(input)); });