mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-06-14 09:49:12 +08:00
4 lines
98 B
TypeScript
4 lines
98 B
TypeScript
export default function strlen(str: string) {
|
|
return str.replace(/\u001b[^m]*m/g, '').length;
|
|
}
|