logo

Todash 2.4.0

是一个 类型推导 工具库,旨在帮助你快速方便的编写具备类型推导的 TypeScript 代码。


“String” 方法


_.StringEndsWith<str, searchStr>

用来判断当前字符串是否是以另外一个给定的子字符串“结尾”的


参数


str (string): 被搜索的当前字符串
searchStr (string): 要搜索的子字符串


返回


string: 符合条件返回 当前字符串 反之 never


例子


type ValidString = _.StringEndsWith<'VueReactAngular', 'Angular'>;
// => 'VueReactAngular'

type ValidString = _.StringEndsWith<'VueReactAngular', 'React'>;
// => never