Javascript String readable()

Description

Javascript String readable()


String.prototype.readable = function() {
  return this.replace(/::/g, ' ').humanize();
};



PreviousNext

Related