blob: d9c0b2d63b701c4809846c3d4eb34c3a9bcb8ba0 (
plain)
1
2
3
4
5
6
7
8
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// Copyright Joyent, Inc. and Node.js contributors. All rights reserved. MIT license.
// TODO(petamoriken): enable prefer-primordials for node polyfills
// deno-lint-ignore-file prefer-primordials
export const kHandle = Symbol("kHandle");
export const kKeyObject = Symbol("kKeyObject");
|