Spaces:
Runtime error
Runtime error
File size: 936 Bytes
4327358 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
function parseBool(value: any): boolean {
if (typeof value === 'boolean') {
return value;
}
if (!value) {
return false;
}
if (value.toLowerCase() === 'true' || value.toLowerCase() === '1') {
return true;
}
if (value.toLowerCase() === 'false' || value.toLowerCase() === '0') {
return false;
}
throw new Error(
'Error: parseBool got unexpected value - use "true" or "false" values',
);
}
function flipObject(object) {
return Object.fromEntries(
Object.entries(object).map(([key, value]) => [value, key]),
);
}
function splitAt(str: string, index) {
const fst = [...str];
const snd = fst.splice(index);
return [fst.join(''), snd.join('')];
}
export function sortObjectByValues(obj: any) {
if (!obj) {
return obj;
}
return Object.fromEntries(
// @ts-ignore
Object.entries(obj).sort(([, v1], [, v2]) => v2 - v1),
);
}
export { flipObject, parseBool, splitAt };
|