Skip to main content
Module

std/node/domain.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.// Copyright Joyent and Node contributors. All rights reserved. MIT license.
import { notImplemented } from "./_utils.ts";
export function create() { notImplemented("domain.create");}export class Domain { constructor() { notImplemented("domain.Domain.prototype.constructor"); }}export default { create, Domain,};