FurBall/uni_modules/tuniaoui-vue3/libs/lodash/_trimmedEndIndex.ts

11 lines
206 B
TypeScript

const reWhitespace = /\s/
export function trimmedEndIndex(string: string) {
let index = string.length
while (index-- && reWhitespace.test(string.charAt(index))) {
/* empty */
}
return index
}