is-function.js (576B)
1 // |reftest| shell-option(--enable-iterator-sequencing) skip-if(!Iterator.concat||!xulRuntime.shell) -- iterator-sequencing is not enabled unconditionally, requires shell-options 2 // Copyright (C) 2024 André Bargull. All rights reserved. 3 // This code is governed by the BSD license found in the LICENSE file. 4 5 /*--- 6 esid: sec-iterator.concat 7 description: > 8 Iterator.concat is a built-in function 9 features: [iterator-sequencing] 10 ---*/ 11 12 assert.sameValue( 13 typeof Iterator.concat, 14 "function", 15 "The value of `typeof Iterator.concat` is 'function'" 16 ); 17 18 reportCompare(0, 0);