* valid-jsdoc replaced with jsdoc plugin * New /selenium config Change-Id: I471eebac0312cb25c539c3f6a3ecfc7cfd4ed8d6
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
'use strict';
|
|
|
|
const chars = [];
|
|
|
|
for ( let i = 0; i <= 0x10ffff; i++ ) {
|
|
chars.push( String.fromCodePoint( i ).toUpperCase() );
|
|
}
|
|
console.log( JSON.stringify( chars ) );
|