Home > @dinofe/xt-core > isEndWithSlash
# isEndWithSlash() function
字符串是否以'/'结尾
Signature:
export declare function isEndWithSlash(a: string): boolean;
# Parameters
Parameter | Type | Description |
---|---|---|
a | string | 待校验的数据 |
Returns:
boolean
判断结果
# Example
import { isEndWithSlash } from '@dinofe/xt-core/common'
isEndWithSlash('/') // true
isEndWithSlash('/foo/bar/') // true
isEndWithSlash('foo bar') // false