summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/domain.ts
blob: ea0aed728d6f47ddf07aeaaf49764c0ee499080e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Copyright Joyent and Node contributors. All rights reserved. MIT license.

import { notImplemented } from "internal:deno_node/polyfills/_utils.ts";

export function create() {
  notImplemented("domain.create");
}
export class Domain {
  constructor() {
    notImplemented("domain.Domain.prototype.constructor");
  }
}
export default {
  create,
  Domain,
};