Add settings page for managing forecasting API key and URL via UI
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
cae411eae7
commit
1c411e402e
19809 changed files with 1962608 additions and 97 deletions
21
frontend/node_modules/es-toolkit/dist/compat/string/unescape.mjs
generated
vendored
Normal file
21
frontend/node_modules/es-toolkit/dist/compat/string/unescape.mjs
generated
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import { unescape as unescape$1 } from "../../string/unescape.mjs";
|
||||
import { toString } from "../util/toString.mjs";
|
||||
//#region src/compat/string/unescape.ts
|
||||
/**
|
||||
* Converts the HTML entities `&`, `<`, `>`, `"`, and `'` in `str` to their corresponding characters.
|
||||
* It is the inverse of `escape`.
|
||||
*
|
||||
* @param str The string to unescape.
|
||||
* @returns Returns the unescaped string.
|
||||
*
|
||||
* @example
|
||||
* unescape('This is a <div> element.'); // returns 'This is a <div> element.'
|
||||
* unescape('This is a "quote"'); // returns 'This is a "quote"'
|
||||
* unescape('This is a 'quote''); // returns 'This is a 'quote''
|
||||
* unescape('This is a & symbol'); // returns 'This is a & symbol'
|
||||
*/
|
||||
function unescape(str) {
|
||||
return unescape$1(toString(str));
|
||||
}
|
||||
//#endregion
|
||||
export { unescape };
|
||||
Loading…
Add table
Add a link
Reference in a new issue