mirror of
https://github.com/denoland/deno.git
synced 2025-01-05 13:59:01 -05:00
10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
|
// deno-fmt-ignore-file
|
||
|
// deno-lint-ignore-file
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
const assert = require("assert/strict");
|
||
|
const worker_threads = require("worker_threads");
|
||
|
|
||
|
assert.equal(BroadcastChannel, worker_threads.BroadcastChannel);
|