UNPKG

rsuite

Version:

A suite of react components

12 lines 221 B
'use client'; export function getStringLength(str) { let length = 0; Array.from(str).forEach(char => { if (char.charCodeAt(0) > 255) { length += 2; } else { length++; } }); return length; }