Skip to content

Commit b63e67c

Browse files
committed
"node:net"
1 parent 01f9d8e commit b63e67c

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

deps.ts

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,16 @@ export {
66
assertStrictEquals,
77
equal,
88
} from "https://deno.land/std@0.177.0/testing/asserts.ts";
9+
10+
import AsyncLimiterClass, {
11+
AsyncCurrentLimiter,
12+
} from "npm:@masx200/async-task-current-limiter@2.1.0";
13+
14+
import { BinaryHeap } from "https://deno.land/std@0.177.0/collections/binary_heap.ts";
915
import { Deque } from "https://esm.sh/@datastructures-js/deque@1.0.4/";
16+
import { RedBlackNode } from "https://deno.land/std@0.177.0/collections/red_black_node.ts";
17+
import memoize from "https://cdn.skypack.dev/lodash@4.17.21/memoize?dts";
18+
1019
export { Deque };
1120
export { default as random } from "https://cdn.skypack.dev/lodash@4.17.21/random?dts";
1221
export { default as countBy } from "https://cdn.skypack.dev/lodash@4.17.21/countBy?dts";
@@ -17,17 +26,11 @@ export { default as max } from "https://cdn.skypack.dev/lodash@4.17.21/max?dts";
1726
export { default as sum } from "https://cdn.skypack.dev/lodash@4.17.21/sum?dts";
1827
export { default as intersection } from "https://cdn.skypack.dev/lodash@4.17.21/intersection?dts";
1928

20-
import memoize from "https://cdn.skypack.dev/lodash@4.17.21/memoize?dts";
21-
import { BinaryHeap } from "https://deno.land/std@0.177.0/collections/binary_heap.ts";
22-
import { RedBlackNode } from "https://deno.land/std@0.177.0/collections/red_black_node.ts";
23-
import AsyncLimiterClass, {
24-
AsyncCurrentLimiter,
25-
} from "npm:@masx200/async-task-current-limiter@2.1.0";
2629
export { BinaryHeap };
2730
export { walk } from "https://deno.land/std@0.177.0/fs/mod.ts";
2831
export { parse } from "https://deno.land/std@0.177.0/flags/mod.ts";
2932
export { combinations } from "https://deno.land/x/combinatorics@1.1.2/mod.ts";
30-
export { isIP } from "https://deno.land/std@0.177.0/node/internal/net.ts";
33+
export { isIP } from "node:net";
3134
export { Heap } from "npm:@datastructures-js/heap@4.3.1";
3235
export {
3336
AvlTree,

0 commit comments

Comments
 (0)