Sha256: 252167ec7538a485246155f007ba3f49ec839f045a407b6bb9c30f7f1b926d65

Contents?: true

Size: 417 Bytes

Versions: 211

Compression:

Stored size: 417 Bytes

Contents

const LANGUAGE_RULES_REGEXP = /^([^aeiou]?qu|[^aeiou]*)(.+)/;

function translateWord(word) {
  const [ , beginning, ending ] = word.match(LANGUAGE_RULES_REGEXP);

  if (beginning.length === 0) {
    return word + 'ay';
  }
  return ending + beginning + 'ay';
}

class PigLatin {
  translate (english) {
    return english
      .split(' ')
      .map(translateWord)
      .join(' ');
  }
}

export default PigLatin;

Version data entries

211 entries across 211 versions & 1 rubygems

Version Path
trackler-2.2.0.0 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.55 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.54 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.53 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.52 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.51 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.50 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.49 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.48 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.47 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.46 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.45 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.44 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.43 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.42 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.41 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.40 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.39 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.38 tracks/ecmascript/exercises/pig-latin/example.js
trackler-2.1.0.37 tracks/ecmascript/exercises/pig-latin/example.js