mirror of
https://github.com/tc39/test262.git
synced 2025-12-01 19:13:19 +01:00
16 lines
359 B
JavaScript
16 lines
359 B
JavaScript
// Copyright (C) 2025 André Bargull. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-iterator.zip
|
|
description: >
|
|
Iterator.zip is a built-in function
|
|
features: [joint-iteration]
|
|
---*/
|
|
|
|
assert.sameValue(
|
|
typeof Iterator.zip,
|
|
"function",
|
|
"The value of `typeof Iterator.zip` is 'function'"
|
|
);
|