2024-11-05 10:14:41 +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
}