is-function.js (375B)
1 // Copyright (C) 2020 Rick Waldron. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 esid: sec-iterator.from 5 description: > 6 Iterator.from is a built-in function 7 features: [iterator-helpers] 8 ---*/ 9 10 assert.sameValue(typeof Iterator.from, 'function', 'The value of `typeof Iterator.from` is "function"'); 11 12 reportCompare(0, 0);