Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
'use strict';
const chars = [];
for ( let i = 0; i <= 0x10ffff; i++ ) {
chars.push( String.fromCodePoint( i ).toUpperCase() );
}
console.log( JSON.stringify( chars ) );