'use client';
"use strict";
exports.__esModule = true;
exports.getStringLength = getStringLength;
function getStringLength(str) {
let length = 0;
Array.from(str).forEach(char => {
if (char.charCodeAt(0) > 255) {
length += 2;
} else {
length++;
}
});
return length;
}