Hi,
I attempted to enhance my javascript function to remove diacritics signs (i.e. É --> E) and found this nice solution here:
str.normalize("NFD").replace(/[\u0300-\u036f]/g, "")
but it appears to be possible only with ECMAScript 6.
So which version of JS is currently supported by Songkong?