Rush StackShopBlogEvents
Skip to main content

Home > @rushstack/node-core-library > Text > padStart

Text.padStart() method

Append characters to the start of a string to ensure the result has a minimum length.

Signature:

static padStart(s: string, minimumLength: number, paddingCharacter?: string): string;

Parameters

ParameterTypeDescription
sstring
minimumLengthnumber
paddingCharacterstring(Optional)

Returns:

string

Remarks

If the string length already exceeds the minimum length, then the string is unchanged. The string is not truncated.