@unikue/ts-lang-utils
    Preparing search index...

    Function removeIncludesIgnoreCase

    • Returns the array that excludes the elements which includes any of the given exclusions, case-insensitive

      Parameters

      • Optionaltexts: string[] | null

        The arrays to inspect

      • Optionalexcludes: string[] | null

        The elements array to exclude

      Returns string[] | null | undefined

      the array that excludes the elements which includes any of the given exclusions, case-insensitive

      David Hsing

      removeIncludesIgnoreCase(['foo', 'bar'], ['AR']);    // ['foo']