arthurvr / is-octal-digit

Check if a number or a string is a digit in the octal numeral system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is-octal-digit Build Status

Check if a number or a string is a digit in the octal numeral system digit

Install

$ npm install --save is-octal-digit

Usage

const isOctalDigit = require('is-octal-digit');

isOctalDigit(0);
//=> true

isOctalDigit('2');
//=> true

isOctalDigit('abc');
//=> false

isOctalDigit('9');
//=> false

isOctalDigit('01');
//=> false

License

MIT © Arthur Verschaeve

About

Check if a number or a string is a digit in the octal numeral system

License:MIT License


Languages

Language:JavaScript 100.0%