Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

is-hex

roryrjb6.2kMITdeprecated1.1.3

Development of this module has been stopped.

check if a string is a valid hexadecimal number

hex, hexadecimal, base16, regex, regexp

readme

is-hex Build Status js-standard-style

Check if a string is a valid hexadecimal number.

Installation

$ npm install is-hex

Tests:

$ npm test

Usage

const isHex = require('is-hex')

isHex('08f67a') // true
isHex('08-f67a') // false
isHex('ffffffx') // false
isHex({}) // false
isHex([]) // false
isHex(88) // false
isHex(true) // false
isHex('0192') // true

License

MIT