mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-20 14:30:57 +00:00
9 lines
307 B
TypeScript
9 lines
307 B
TypeScript
export {
|
|
registerProviderPlugins as registerProviders,
|
|
requireRegisteredProvider as requireProvider,
|
|
} from "../../test-utils/plugin-registration.js";
|
|
|
|
export function uniqueSortedStrings(values: readonly string[]) {
|
|
return [...new Set(values)].toSorted((left, right) => left.localeCompare(right));
|
|
}
|