blob: d259cb8b93d5b62482232c92d8bb508bbcc3e9e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-parseint-string-radix
description: >
parseInt - 'S' is the empty string when inputString does not
contain any such characters
---*/
assert.sameValue(parseInt(""), NaN, 'parseInt("") must return NaN');
reportCompare(0, 0);
|