maycur-business
Version:
maycur business react components of web
13 lines (11 loc) • 318 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = isbinary;
// Copyright 2015-2018 FormBucket LLC
// ISBINARY returns true when the string is 1 to 10 characters in length and
// only contains 1 or 0s.
function isbinary(value) {
return /^[01]{1,10}$/.test(value);
}