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