lengthGreaterThan
lengthGreaterThan() tests whether the length of a String is strictly greater than a value. Supports the curried version.
Interactive example
Syntax
Classic signature
typescript
function lengthGreaterThan(
primitive: String,
length: Number | number
): booleanCurried signature
typescript
function lengthGreaterThan(
length: Number | number
): (primitive: String) => booleanParameters
primitive: wrappedString(classic signature only).length: comparison threshold.
Return value
A boolean indicating whether primitive.length > length.
