mirror of
https://github.com/tc39/test262.git
synced 2025-11-28 17:43:19 +01:00
16 lines
379 B
JavaScript
16 lines
379 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.zipkeyed
|
|
description: >
|
|
Iterator.zipKeyed is a built-in function
|
|
features: [joint-iteration]
|
|
---*/
|
|
|
|
assert.sameValue(
|
|
typeof Iterator.zipKeyed,
|
|
"function",
|
|
"The value of `typeof Iterator.zipKeyed` is 'function'"
|
|
);
|