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.

readme.md 629B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # array-differ [![Build Status](https://travis-ci.org/sindresorhus/array-differ.svg?branch=master)](https://travis-ci.org/sindresorhus/array-differ)
  2. > Create an array with values that are present in the first input array but not additional ones
  3. ## Install
  4. ```
  5. $ npm install array-differ
  6. ```
  7. ## Usage
  8. ```js
  9. const arrayDiffer = require('array-differ');
  10. arrayDiffer([2, 3, 4], [3, 50]);
  11. //=> [2, 4]
  12. ```
  13. ## API
  14. ### arrayDiffer(input, ...values)
  15. Returns a new array.
  16. #### input
  17. Type: `unknown[]`
  18. #### values
  19. Type: `unknown[]`
  20. Arrays of values to exclude.
  21. ## License
  22. MIT © [Sindre Sorhus](https://sindresorhus.com)