mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
ci: fix lint and audit regressions on main
This commit is contained in:
@@ -290,7 +290,7 @@ function addModelConfigIds(target: Set<string>, modelConfig: unknown) {
|
||||
|
||||
export function sortLocaleStrings(values: Iterable<string>): string[] {
|
||||
const sorted = Array.from(values);
|
||||
const buffer = new Array<string>(sorted.length);
|
||||
const buffer = Array.from({ length: sorted.length }, () => "");
|
||||
|
||||
const merge = (left: number, middle: number, right: number): void => {
|
||||
let i = left;
|
||||
|
||||
Reference in New Issue
Block a user