Files
2025-12-06 23:02:28 -05:00

10 lines
187 B
TypeScript

import type { Key, KeyOptions } from "./types";
export function enforceKeyOptions(key: Key): KeyOptions {
return typeof key == "string"
? {
name: key,
}
: key;
}