UNPKG

stringzy

Version:

A versatile string manipulation library providing a range of text utilities for JavaScript and Node.js applications.

7 lines (6 loc) 166 B
export type ComplexityResult = { score: number; uniqueness: number; length: number; }; export declare function complexity(str: string): ComplexityResult;