blob: f423bad61a895a30e1da1823ed879e28e3a731bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { kKeyObject } from "ext:deno_node/internal/crypto/constants.ts";
export const kKeyType = Symbol("kKeyType");
export function isKeyObject(obj: unknown): boolean {
return (
obj != null && (obj as Record<symbol, unknown>)[kKeyType] !== undefined
);
}
export function isCryptoKey(obj: unknown): boolean {
return (
obj != null && (obj as Record<symbol, unknown>)[kKeyObject] !== undefined
);
}
|