mirror of
https://github.com/denoland/deno.git
synced 2025-02-12 16:59:32 -05:00
26 lines
770 B
TypeScript
26 lines
770 B
TypeScript
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
// This file is here because to break a circular dependency between streams and
|
|
// crypto.
|
|
|
|
// TODO(petamoriken): enable prefer-primordials for node polyfills
|
|
// deno-lint-ignore-file prefer-primordials
|
|
|
|
import { kKeyObject } from "ext:deno_node/internal/crypto/constants.ts";
|
|
import type { KeyObject } from "ext:deno_node/internal/crypto/keys.ts";
|
|
|
|
export const kKeyType = Symbol("kKeyType");
|
|
|
|
export function isKeyObject(obj: unknown): obj is KeyObject {
|
|
return (
|
|
obj != null && (obj as Record<symbol, unknown>)[kKeyType] !== undefined
|
|
);
|
|
}
|
|
|
|
export function isCryptoKey(
|
|
obj: unknown,
|
|
): obj is CryptoKey {
|
|
return (
|
|
obj != null && (obj as Record<symbol, unknown>)[kKeyObject] !== undefined
|
|
);
|
|
}
|