@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface StringOptions

    Constraints for s.string.

    interface StringOptions {
        maxLength?: number;
        minLength?: number;
        pattern?: RegExp;
    }
    Index
    maxLength?: number

    Inclusive maximum number of UTF-16 code units.

    minLength?: number

    Inclusive minimum number of UTF-16 code units.

    pattern?: RegExp

    Pattern passed to RegExp.test. The expression is not implicitly anchored. Avoid g/y expressions whose mutable lastIndex makes repeated validation stateful.