summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/repeat/count-is-zero-returns-empty-string.js
blob: 5a0403b5e7482c296fb8afe1c10fd40cab57c221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 21.1.3.13
description: >
  If count is zero, returns an empty String.
info: |
  21.1.3.13 String.prototype.repeat ( count )

  8. Let T be a String value that is made from n copies of S appended together.
  If n is 0, T is the empty String.
  9. Return T.
---*/

assert.sameValue('foo'.repeat(0), '');

reportCompare(0, 0);