Merge "Improve documentation of constants throughout the codebase"
[lhc/web/wiklou.git] / maintenance / mediawiki.Title / generateJsToUpperCaseList.js
1 /* eslint-env node, es6 */
2 var i, chars = [];
3
4 for ( i = 0; i < 65536; i++ ) {
5 chars.push( String.fromCharCode( i ).toUpperCase() );
6 }
7 // eslint-disable-next-line no-console
8 console.log( JSON.stringify( chars ) );