File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11interface String {
22 /**
3- * Pads this string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
4- * The padding is applied from the start of this string.
3+ * Pads the current string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
4+ * The padding is applied from the start of the current string.
55 *
66 * [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart)
77 *
@@ -15,8 +15,8 @@ interface String {
1515 padStart ( targetLength : number , padString ?: string ) : string ;
1616
1717 /**
18- * Pads this string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
19- * The padding is applied from the end of this string.
18+ * Pads the current string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
19+ * The padding is applied from the end of the current string.
2020 *
2121 * [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd)
2222 *
You can’t perform that action at this time.
0 commit comments