Sign in
◑
Theme
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/node-ci-2026-06-16
/
.
/
test
/
parallel
/
test-net-negative-zero.js
blob: fa64d1ef4151cc7b6ae6e81d89c55a1605e02482 [
file
] [
edit
]
'use strict'
;
require
(
'../common'
);
const
net
=
require
(
'net'
);
{
const
blockList
=
new
net
.
BlockList
();
blockList
.
addSubnet
(
'0.0.0.0'
,
-
0
);
}
{
const
blockList
=
new
net
.
BlockList
();
blockList
.
addSubnet
(
'::'
,
-
0
,
'ipv6'
);
}