UNPKG

not-binary

Version:

Returns true, if not a binary number or string

6 lines (4 loc) 95 B
function notBinary(str) { return !/^[01]+$/.test(str); } module.exports = notBinary;