removeTrailingSlash
removeTrailingSlash(path
): string
引数pathの末尾スラッシュ(TrailingSlash)を削除して、返却
Example
// 返値: /path/to/ok
withTrailingSlash('/path/to/ok')
// 返値: /path/to/ok
withTrailingSlash('/path/to/ok/')
// 返値: http://localhost:8000/sample
withTrailingSlash('http://localhost:8000/sample/')
Parameters
Name | Type |
---|---|
path | string |
Returns
string