2019-06-03 19:49:03 +02:00
|
|
|
// Copyright (C) 2019 Leo Balter. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-finalization-group-constructor
|
|
|
|
description: >
|
|
|
|
The FinalizationGroup constructor is the %FinalizationGroup% intrinsic object and the initial
|
|
|
|
value of the FinalizationGroup property of the global object.
|
2019-06-19 20:06:20 +02:00
|
|
|
features: [FinalizationGroup]
|
2019-06-03 19:49:03 +02:00
|
|
|
---*/
|
|
|
|
|
|
|
|
assert.sameValue(
|
|
|
|
typeof FinalizationGroup, 'function',
|
2019-06-03 22:59:39 +02:00
|
|
|
'typeof FinalizationGroup is function'
|
2019-06-03 19:49:03 +02:00
|
|
|
);
|