summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/trimEnd/this-value-number.js
blob: 8446048b5683f6cffaf9e3eb92885bbe6a109a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright (c) 2017 Valerie Young.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-string.prototype.trimEnd
description: Behavoir when "this" value is a number.
info: |
  Runtime Semantics: TrimString ( string, where )
  2. Let S be ? ToString(str).

  ToString ( argument )
  Argument Type: Number
  Result: NumberToString(argument)
features: [string-trimming, String.prototype.trimEnd]
---*/

var trimEnd = String.prototype.trimEnd

assert.sameValue(
  trimEnd.call(NaN),
  'NaN',
  'String.prototype.trimEnd.call(NaN)'
);

assert.sameValue(
  trimEnd.call(Infinity),
  'Infinity',
  'String.prototype.trimEnd.call(Infinity)'
);

assert.sameValue(
  trimEnd.call(-0),
  '0',
  'String.prototype.trimEnd.call(-0)'
);

assert.sameValue(
  trimEnd.call(1),
  '1',
  'String.prototype.trimEnd.call(1)'
);

assert.sameValue(
  trimEnd.call(-1),
  '-1',
  'String.prototype.trimEnd.call(-1)'
);

reportCompare(0, 0);