@nevware21/ts-utils
    Preparing search index...

    Function strStartsWithAny

    • Checks whether the string starts with any of the provided search values.

      Parameters

      • value: string

        The string value to be checked.

      • searchValues: ArrayLike<string>

        An array-like list of values to check at the start of the string.

      • Optionalposition: number

        The position in this string at which to begin searching. Defaults to 0.

      Returns boolean

      True if any value matches at the start; otherwise false.

      0.14.0

      TypeError If value is null or undefined.