mirror of
https://github.com/danbulant/jose
synced 2026-05-22 13:58:47 +00:00
5 lines
157 B
TypeScript
5 lines
157 B
TypeScript
import { KeyObject } from 'crypto'
|
|
|
|
export default function isKeyObject(obj: unknown): obj is KeyObject {
|
|
return obj != null && obj instanceof KeyObject
|
|
}
|