mirror of
https://github.com/tc39/test262.git
synced 2025-05-27 10:10:29 +02:00
17 lines
341 B
JavaScript
17 lines
341 B
JavaScript
// Copyright (C) 2024 Jordan Harband. All rights reserved.
|
|
// See LICENSE for details.
|
|
|
|
/*---
|
|
author: Jordan Harband
|
|
description: Promise.try property descriptor
|
|
features: [promise-try]
|
|
includes: [propertyHelper.js]
|
|
---*/
|
|
|
|
verifyProperty(Promise, 'try', {
|
|
value: Promise.try,
|
|
writable: true,
|
|
enumerable: false,
|
|
configurable: true
|
|
})
|