support async component, see: https://eslint.vuejs.org/user-guide/#how-to-use-a-custom-parser
26 lines
No EOL
804 B
TypeScript
26 lines
No EOL
804 B
TypeScript
export function findIndexById<T extends {id: string | number}>(array : T[], id : string | number) {
|
|
return array.findIndex(({id: currentId}) => currentId === id)
|
|
}
|
|
|
|
export function findById<T extends {id: string | number}>(array : T[], id : string | number) {
|
|
return array.find(({id: currentId}) => currentId === id)
|
|
}
|
|
|
|
export function includesById(array: [], id: string | number) {
|
|
return array.some(({id: currentId}) => currentId === id)
|
|
}
|
|
|
|
// https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore#_isnil
|
|
export function isNil(value: unknown) {
|
|
return value == null
|
|
}
|
|
|
|
export function omitBy(obj: Record<string, unknown>, check: (value: unknown) => boolean) {
|
|
if (isNil(obj)) {
|
|
return {}
|
|
}
|
|
|
|
return Object.fromEntries(
|
|
Object.entries(obj).filter(([, value]) => !check(value)),
|
|
)
|
|
} |