Source code

Revision control

Copy as Markdown

Other Tools

// Copyright (C) 2021 Igalia, S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: Property type and descriptor.
includes: [propertyHelper.js]
features: [Intl.NumberFormat-v3]
---*/
assert.sameValue(
typeof Intl.NumberFormat.prototype.formatRangeToParts,
'function',
'`typeof Intl.NumberFormat.prototype.formatRangeToParts` is `function`'
);
verifyProperty(Intl.NumberFormat.prototype, 'formatRangeToParts', {
enumerable: false,
writable: true,
configurable: true,
});
reportCompare(0, 0);