UNPKG

@tuniao/tnui-vue3-uniapp

Version:
11 lines (8 loc) 266 B
import { baseIndexOf } from './_baseIndexOf' export function charsEndIndex(strSymbols: string[], chrSymbols: string[]) { let index = strSymbols.length while (index-- && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) { /* empty */ } return index }