7
common/resources/client/utils/ts/obj-has-key.ts
Executable file
7
common/resources/client/utils/ts/obj-has-key.ts
Executable file
@@ -0,0 +1,7 @@
|
||||
export function objHasKey<X extends {}, Y extends PropertyKey>(
|
||||
obj: X,
|
||||
prop: Y
|
||||
): obj is X & Record<Y, unknown> {
|
||||
// eslint-disable-next-line no-prototype-builtins
|
||||
return obj.hasOwnProperty(prop);
|
||||
}
|
||||
Reference in New Issue
Block a user