1.1.3 • Published 10 years ago

is-hex v1.1.3

Weekly downloads
863
License
MIT
Repository
github
Last release
10 years ago

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