Nodejs String Translate translate()

Here you can find the source of translate()

Method Source Code

var translate = {};
String.prototype.translate = function() {
   return translate[this]?translate[this]:this;
};

Related

  1. translate()
    String.prototype.translate = function() {
      return I18N.translateStr(this);
    
  2. translatePigLatin(str)
    function translatePigLatin(str) {
      var vowels = /[aeiou]/i;
      var consonantSuffix = "ay";
      var vowelSuffix = "way";
      var firstVowel = str.indexOf(str.match(vowels));
      if (firstVowel === 0) {
        str = str + vowelSuffix;
      else {
    ...