source: frontend/node_modules/underscore/cjs/partition.js

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: 315 bytes
Line 
1var _group = require('./_group.js');
2
3// Split a collection into two arrays: one whose elements all pass the given
4// truth test, and one whose elements all do not pass the truth test.
5var partition = _group(function(result, value, pass) {
6 result[pass ? 0 : 1].push(value);
7}, true);
8
9module.exports = partition;
Note: See TracBrowser for help on using the repository browser.