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

    Function removeEquals

    • Returns the array that excludes the elements which equals to any of the given exclusions

      Parameters

      • Optionaltexts: null | string[]

        the arrays to inspect

      • Optionalexcludes: null | string[]

        the elements array to exclude

      Returns undefined | null | string[]

      the array that excludes the elements which equals to any of the given exclusions

      David Hsing

      removeEquals(['foo', 'bar'], ['bar']);    // ['foo']