EASYAIuniappNewUI/node_modules/@tuniao/tnui-vue3-uniapp/libs/lodash/_trimmedEndIndex.ts
2025-02-08 18:50:38 +08:00

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
}