Merge pull request #31831 from shibukawa/patch-1

Fix es2019.string.d.ts
This commit is contained in:
Daniel Rosenwasser 2019-06-10 16:13:38 -07:00 committed by GitHub
commit d023427226
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,9 +5,9 @@ interface String {
/** Removes the leading white space and line terminator characters from a string. */
trimStart(): string;
/** Removes the trailing white space and line terminator characters from a string. */
/** Removes the leading white space and line terminator characters from a string. */
trimLeft(): string;
/** Removes the leading white space and line terminator characters from a string. */
/** Removes the trailing white space and line terminator characters from a string. */
trimRight(): string;
}