|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
299 bytes
|
| Line | |
|---|
| 1 | define(['./restArguments', './difference'], function (restArguments, difference) {
|
|---|
| 2 |
|
|---|
| 3 | // Return a version of the array that does not contain the specified value(s).
|
|---|
| 4 | var without = restArguments(function(array, otherArrays) {
|
|---|
| 5 | return difference(array, otherArrays);
|
|---|
| 6 | });
|
|---|
| 7 |
|
|---|
| 8 | return without;
|
|---|
| 9 |
|
|---|
| 10 | });
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.