is-function.js (401B)
1 // Copyright (C) 2025 André Bargull. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-iterator.zipkeyed 6 description: > 7 Iterator.zipKeyed is a built-in function 8 features: [joint-iteration] 9 ---*/ 10 11 assert.sameValue( 12 typeof Iterator.zipKeyed, 13 "function", 14 "The value of `typeof Iterator.zipKeyed` is 'function'" 15 ); 16 17 reportCompare(0, 0);