test262/test/built-ins/isNaN/prop-desc.js

16 lines
348 B
JavaScript
Raw Permalink Normal View History

2016-06-30 20:05:47 +02:00
// Copyright (C) 2016 The V8 Project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
2017-06-29 17:31:57 +02:00
esid: sec-isnan-number
2016-06-30 20:05:47 +02:00
description: >
Property descriptor for isNaN
includes: [propertyHelper.js]
---*/
verifyProperty(this, "isNaN", {
writable: true,
enumerable: false,
configurable: true
});