UNPKG

@tuniao/tnui-vue3-uniapp

Version:
11 lines (8 loc) 206 B
const reWhitespace = /\s/ export function trimmedEndIndex(string: string) { let index = string.length while (index-- && reWhitespace.test(string.charAt(index))) { /* empty */ } return index }