Removed unused String.prototype.pad_left().

Unused since its introduction in dd5320d1d5.
This commit is contained in:
Nick Pope 2018-06-25 14:26:42 +01:00 committed by Tim Graham
parent 41e6ef28b0
commit 93d1f2d209
1 changed files with 0 additions and 8 deletions

View File

@ -156,14 +156,6 @@ function findPosY(obj) {
// ----------------------------------------------------------------------------
// String object extensions
// ----------------------------------------------------------------------------
String.prototype.pad_left = function(pad_length, pad_string) {
var new_string = this;
for (var i = 0; new_string.length < pad_length; i++) {
new_string = pad_string + new_string;
}
return new_string;
};
String.prototype.strptime = function(format) {
var split_format = format.split(/[.\-/]/);
var date = this.split(/[.\-/]/);