phpjs
Version:
11 lines (10 loc) • 330 B
JavaScript
function hexdec(hex_string) {
// From: http://phpjs.org/functions
// + original by: Philippe Baumann
// * example 1: hexdec('that');
// * returns 1: 10
// * example 2: hexdec('a0');
// * returns 2: 160
hex_string = (hex_string + '').replace(/[^a-f0-9]/gi, '');
return parseInt(hex_string, 16);
}