Javascript String toHex()

Description

Javascript String toHex()


String.prototype.toHex = function() {
  var buffer = forge.util.createBuffer(this.toString());
  return buffer.toHex();
}



PreviousNext

Related