massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / @babel / helper-validator-identifier / scripts / generate-identifier-regex.js
index 70b371508bdb1b84753d5a6afd98f17bfa970f8a..f644d77df9f124be316a87baeac03d16ab31fac6 100644 (file)
@@ -2,16 +2,16 @@
 
 // Always use the latest available version of Unicode!
 // https://tc39.github.io/ecma262/#sec-conformance
-const version = "13.0.0";
+const version = "14.0.0";
 
-const start = require("unicode-" +
+const start = require("@unicode/unicode-" +
   version +
   "/Binary_Property/ID_Start/code-points.js").filter(function (ch) {
   return ch > 0x7f;
 });
 let last = -1;
 const cont = [0x200c, 0x200d].concat(
-  require("unicode-" +
+  require("@unicode/unicode-" +
     version +
     "/Binary_Property/ID_Continue/code-points.js").filter(function (ch) {
     return ch > 0x7f && search(start, ch, last + 1) == -1;