commit
This commit is contained in:
parent
be4fd23bcf
commit
0bd53741af
728 changed files with 86573 additions and 0 deletions
21
node_modules/unraw/dist/index.d.ts
generated
vendored
Normal file
21
node_modules/unraw/dist/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
/**
|
||||
* @file **unraw** | Convert raw escape sequences to their respective characters
|
||||
* (undo `String.raw`).
|
||||
* @author Ian Sanders
|
||||
* @copyright 2019 Ian Sanders
|
||||
* @license MIT
|
||||
*/
|
||||
import { ErrorType, errorMessages } from "./errors";
|
||||
export { ErrorType, errorMessages };
|
||||
/**
|
||||
* Replace raw escape character strings with their escape characters.
|
||||
* @param raw A string where escape characters are represented as raw string
|
||||
* values like `\'` rather than `'`.
|
||||
* @param allowOctals If `true`, will process the now-deprecated octal escape
|
||||
* sequences (ie, `\111`).
|
||||
* @returns The processed string, with escape characters replaced by their
|
||||
* respective actual Unicode characters.
|
||||
*/
|
||||
export declare function unraw(raw: string, allowOctals?: boolean): string;
|
||||
export default unraw;
|
||||
//# sourceMappingURL=index.d.ts.map
|
Loading…
Add table
Add a link
Reference in a new issue