Skip to content

Commit

Permalink
Merge pull request #10 from mathiasbynens/id
Browse files Browse the repository at this point in the history
Use ES6 identifiers
  • Loading branch information
michaelficarra committed Feb 17, 2015
2 parents b6100dd + d32ad42 commit 07890b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ lineSeparator:0
0;
paragraphSeparator:00;

// identifier names
var $, _, \u0078, x$, x_, x\u0030, xa, x0, x0a, x0123456789,
qwertyuiopasdfghjklzxcvbnm, QWERTYUIOPASDFGHJKLZXCVBNM;
// a representative sample of unicode letters and numbers
var œ一, ǻ둘, ɤ〩, φ, fiⅷ, ユニコード, x‌‍;
var $, _, \u0078, \u{2F9F9}, x$, x_, x\u0030, x\u{e01d5}, xa, x0, x0a,
x0123456789, qwertyuiopasdfghjklzxcvbnm, QWERTYUIOPASDFGHJKLZXCVBNM;
// a representative sample of ID_Start and ID_Continue
var 䩶, x󠇕, œ一, ǻ둘, ɤ〩, φ, fiⅷ, ユニコード, x‌‍;
var yield; let letx; let[x] = 0; const constx = 0;
{ let x; let y = 0; const z = 0; }

Expand Down

0 comments on commit 07890b7

Please sign in to comment.