JS test

Javascript code posted
created at 08 Dec 17:03

Edit | Back
1
2
3
4
5
6
7
// ... 
inflect.plural(/(buffal|tomat)o$/i, '\1oes')
inflect.plural(/([ti])um$/i, '\1a')
inflect.plural(/([ti])a$/i, '\1a') // <-- This bad fellow here is the problem 
inflect.plural(/sis$/i, "ses")
inflect.plural(/(?:([^f])fe|([lr])f)$/i, '\1\2ves')
// ... 
264 Bytes in 2 ms with coderay