Sign in
webkit
/
WebKit
/
c3250a6eaba24bc29f880c8d8a153921fb354a10
/
.
/
JSTests
/
modules
/
namespace-object-has-property.js
blob: 686885aaff3cbd20d43002c9522614cec4e6ab19 [
file
] [
log
] [
blame
]
import
{
shouldBe
}
from
"./resources/assert.js"
;
import
*
as ns from
"./namespace-object-has-property.js"
shouldBe
(
Reflect
.
has
(
ns
,
'empty'
),
true
);
shouldBe
(
Reflect
.
has
(
ns
,
'undefined'
),
false
);
export
let empty
;