• Checks if the value is not a substring of the target. If given value is not a string, then it returns false.

    Example

    expect(isNotSubString("3", "2").value).toBeTruthy()
    

    Parameters

    • contained: string

      The value that may be contained.

    • target: string

      The target value to perform the check against.

    Returns Result<boolean | undefined>

Generated using TypeDoc