2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: If R < 2 or R > 36, then return NaN
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.1.2.2_A4.2_T2
|
2014-07-22 01:09:02 +02:00
|
|
|
description: R = 37
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
2016-07-01 20:22:55 +02:00
|
|
|
assert.sameValue(parseInt("0", 37), NaN, "0");
|
|
|
|
assert.sameValue(parseInt("1", 37), NaN, "1");
|
|
|
|
assert.sameValue(parseInt("2", 37), NaN, "2");
|
|
|
|
assert.sameValue(parseInt("3", 37), NaN, "3");
|
|
|
|
assert.sameValue(parseInt("4", 37), NaN, "4");
|
|
|
|
assert.sameValue(parseInt("5", 37), NaN, "5");
|
|
|
|
assert.sameValue(parseInt("6", 37), NaN, "6");
|
|
|
|
assert.sameValue(parseInt("7", 37), NaN, "7");
|
|
|
|
assert.sameValue(parseInt("8", 37), NaN, "8");
|
|
|
|
assert.sameValue(parseInt("9", 37), NaN, "9");
|
|
|
|
assert.sameValue(parseInt("10", 37), NaN, "10");
|
|
|
|
assert.sameValue(parseInt("11", 37), NaN, "11");
|