mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 21:31:46 +00:00
5 lines
150 B
TypeScript
5 lines
150 B
TypeScript
/** https://tc39.es/ecma402/#sec-canonicalizeuvalue */
|
|
export function CanonicalizeUValue(_ukey: string, uvalue: string): string {
|
|
return uvalue;
|
|
}
|