详细说明: - 添加了V2版本的工作流页面和结果页面 - 更新了Serena记忆文件 - 添加了详细实施计划文档 - 优化了Vite配置 - 更新了项目文档CLAUDE.md - 构建了演示系统的dist版本 - 包含了exhibition-demo的完整依赖
21 lines
808 B
TypeScript
21 lines
808 B
TypeScript
/**
|
|
* Normalize an identifier (as found in references, definitions).
|
|
*
|
|
* Collapses markdown whitespace, trim, and then lower- and uppercase.
|
|
*
|
|
* Some characters are considered “uppercase”, such as U+03F4 (`ϴ`), but if their
|
|
* lowercase counterpart (U+03B8 (`θ`)) is uppercased will result in a different
|
|
* uppercase character (U+0398 (`Θ`)).
|
|
* So, to get a canonical form, we perform both lower- and uppercase.
|
|
*
|
|
* Using uppercase last makes sure keys will never interact with default
|
|
* prototypal values (such as `constructor`): nothing in the prototype of
|
|
* `Object` is uppercase.
|
|
*
|
|
* @param {string} value
|
|
* Identifier to normalize.
|
|
* @returns {string}
|
|
* Normalized identifier.
|
|
*/
|
|
export function normalizeIdentifier(value: string): string;
|
|
//# sourceMappingURL=index.d.ts.map
|