blob: bd595288b94f07c916ff3534d4243028b2bc4ee2 [file] [log] [blame]
// 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.formatRange,
'function',
'`typeof Intl.NumberFormat.prototype.formatRange` is `function`'
);
verifyProperty(Intl.NumberFormat.prototype, 'formatRange', {
enumerable: false,
writable: true,
configurable: true,
});