mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-12 05:31:41 +00:00
update
This commit is contained in:
21
node_modules/javascript-stringify/dist/quote.d.ts
generated
vendored
Normal file
21
node_modules/javascript-stringify/dist/quote.d.ts
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
import { Next } from "./types";
|
||||
/**
|
||||
* Quote a string.
|
||||
*/
|
||||
export declare function quoteString(str: string): string;
|
||||
/**
|
||||
* Test for valid JavaScript identifier.
|
||||
*/
|
||||
export declare const IS_VALID_IDENTIFIER: RegExp;
|
||||
/**
|
||||
* Check if a variable name is valid.
|
||||
*/
|
||||
export declare function isValidVariableName(name: PropertyKey): name is string;
|
||||
/**
|
||||
* Quote JavaScript key access.
|
||||
*/
|
||||
export declare function quoteKey(key: PropertyKey, next: Next): string | undefined;
|
||||
/**
|
||||
* Serialize the path to a string.
|
||||
*/
|
||||
export declare function stringifyPath(path: PropertyKey[], next: Next): string;
|
Reference in New Issue
Block a user