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