```ts import * as S from "flurp/string"; import * as N from "flurp/number";
const shorterThanTwo = S.lengthSatisfies(N.isLt(2)); shorterThanTwo("w"); // true shorterThanTwo("weasel"); // false
Example
```ts import * as S from "flurp/string"; import * as N from "flurp/number";
const shorterThanTwo = S.lengthSatisfies(N.isLt(2)); shorterThanTwo("w"); // true shorterThanTwo("weasel"); // false