Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 495B

123456789101112131415161718192021
  1. /**
  2. Create an array with values that are present in the first array but not additional ones.
  3. @param array - The array to compare against.
  4. @param values - The arrays with values to be excluded.
  5. @returns A new array of filtered values.
  6. @example
  7. ```
  8. import arrayDiffer = require('array-differ');
  9. arrayDiffer([2, 3, 4], [3, 50]);
  10. //=> [2, 4]
  11. ```
  12. */
  13. declare function arrayDiffer<ValueType>(
  14. array: readonly ValueType[],
  15. ...values: (readonly ValueType[])[]
  16. ): ValueType[];
  17. export = arrayDiffer;