blob: b1ba8377a70ab89edd51254b78c2e12daf2f6ee4 [file] [log] [blame]
// Copyright (C) 2016 Jordan Harband. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.padstart
description: >
String#padStart should return the string unchanged when
an explicit empty string is provided
author: Jordan Harband
---*/
assert.sameValue('abc'.padStart(5, ''), 'abc');