-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Expand file tree
/
Copy pathes2017.string.d.ts
More file actions
31 lines (30 loc) · 1.72 KB
/
es2017.string.d.ts
File metadata and controls
31 lines (30 loc) · 1.72 KB
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
interface String {
/**
* Pads the current string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
* The padding is applied from the start of the current string.
*
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart)
*
* @param targetLength The length of the resulting string once the current `str` has been padded.
* If the value is less than or equal to `str.length`, then `str` is returned as-is.
*
* @param padString The string to pad the current `str` with.
* If `padString` is too long to stay within `targetLength`, it will be truncated from the end.
* The default value is the space character (U+0020).
*/
padStart(targetLength: number, padString?: string): string;
/**
* Pads the current string with a given string (repeated and/or truncated, if needed) so that the resulting string has a given length.
* The padding is applied from the end of the current string.
*
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd)
*
* @param targetLength The length of the resulting string once the current `str` has been padded.
* If the value is less than or equal to `str.length`, then `str` is returned as-is.
*
* @param padString The string to pad the current `str` with.
* If `padString` is too long to stay within `targetLength`, it will be truncated from the end.
* The default value is the space character (U+0020).
*/
padEnd(targetLength: number, padString?: string): string;
}