2024-05-01 15:27:31 -07:00

15 lines
357 B
JavaScript

// Copyright (C) 2024 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Promise.try `length` property
includes: [propertyHelper.js]
features: [promise-try]
---*/
verifyProperty(Promise.try, "length", {
value: 1,
writable: false,
enumerable: false,
configurable: true
});