🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
27
node_modules/estree-util-is-identifier-name/lib/index.d.ts
generated
vendored
Normal file
27
node_modules/estree-util-is-identifier-name/lib/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
/**
|
||||
* Checks if the given character code can start an identifier.
|
||||
*
|
||||
* @param {number} code
|
||||
* Character code to check.
|
||||
* @returns {boolean}
|
||||
* Whether `code` can start an identifier.
|
||||
*/
|
||||
export function start(code: number): boolean
|
||||
/**
|
||||
* Checks if the given character code can continue an identifier.
|
||||
*
|
||||
* @param {number} code
|
||||
* Character code to check.
|
||||
* @returns {boolean}
|
||||
* Whether `code` can continue an identifier.
|
||||
*/
|
||||
export function cont(code: number): boolean
|
||||
/**
|
||||
* Checks if the given value is a valid identifier name.
|
||||
*
|
||||
* @param {string} name
|
||||
* Identifier to check.
|
||||
* @returns {boolean}
|
||||
* Whether `name` can be an identifier.
|
||||
*/
|
||||
export function name(name: string): boolean
|
||||
Loading…
Add table
Add a link
Reference in a new issue