summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/math/hexdec.js.map
blob: 8f9fa1e39a1937008f15c4a5803137806b2bafe2 (plain) (blame)
1
{"version":3,"sources":["../../../src/php/math/hexdec.js"],"names":["module","exports","hexdec","hexString","replace","parseInt"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,MAAT,CAAiBC,SAAjB,EAA4B;AAC3C;AACA;AACA;AACA;AACA;AACA;;AAEAA,cAAY,CAACA,YAAY,EAAb,EAAiBC,OAAjB,CAAyB,aAAzB,EAAwC,EAAxC,CAAZ;AACA,SAAOC,SAASF,SAAT,EAAoB,EAApB,CAAP;AACD,CAVD","file":"hexdec.js","sourcesContent":["module.exports = function hexdec (hexString) {\n  //  discuss at: http://locutus.io/php/hexdec/\n  // original by: Philippe Baumann\n  //   example 1: hexdec('that')\n  //   returns 1: 10\n  //   example 2: hexdec('a0')\n  //   returns 2: 160\n\n  hexString = (hexString + '').replace(/[^a-f0-9]/gi, '')\n  return parseInt(hexString, 16)\n}\n"]}