is-function.js (299B)
1 // Copyright (C) 2019 Sergey Rubanov. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-promise.any 6 description: Promise.any is callable 7 features: [Promise.any] 8 ---*/ 9 10 assert.sameValue(typeof Promise.any, 'function'); 11 12 reportCompare(0, 0);