mirror of
https://github.com/tc39/test262.git
synced 2025-05-26 01:30:28 +02:00
15 lines
381 B
JavaScript
15 lines
381 B
JavaScript
// Copyright (C) 2024 Kevin Gibbons. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
esid: sec-math.sumprecise
|
|
description: checks the "sumPrecise" property of Math
|
|
includes: [propertyHelper.js]
|
|
features: [Math.sumPrecise]
|
|
---*/
|
|
|
|
verifyProperty(Math, "sumPrecise", {
|
|
writable: true,
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|