We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ee45f1 commit d41453eCopy full SHA for d41453e
.gitignore
@@ -7,4 +7,4 @@ node_modules
7
.pnp.*
8
.nyc_output
9
# Bundled
10
-index.js
+/index.js
source/index.js
@@ -0,0 +1,5 @@
1
+import identifierRegexp from "./regexp.js";
2
+
3
+const isEs5IdentifierName = (id) => identifierRegexp.test(id);
4
5
+export default isEs5IdentifierName;
0 commit comments