Nodejs Utililty Methods Hex to String Convert

List of utility methods to do Hex to String Convert

Description

The list of methods to do Hex to String Convert are organized into topic(s).

Method

hexTOstr()
String.prototype.hexTOstr = function() {
  var o = "", l = this.length;
  for (var x = 0; x < l; x += 2)
    o += String.fromCharCode(parseInt(this.substr(x, 2), 16));
  return o;