jose/src/runtime/node/is_key_object.ts
2021-05-11 13:40:47 +02:00

5 lines
157 B
TypeScript

import { KeyObject } from 'crypto'
export default function isKeyObject(obj: unknown): obj is KeyObject {
return obj != null && obj instanceof KeyObject
}