Home
last modified time | relevance | path

Searched refs:uniq (Results 1 – 25 of 42) sorted by relevance

12

/plugin/asciidocjs/node_modules/lodash/
Duniq.js21 function uniq(array) { function
25 module.exports = uniq;
Dlodash.js8454 function uniq(array) { function
16751 lodash.uniq = uniq;
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
Darrays.js153 assert.deepEqual(_.uniq(list), [1, 2, 3, 4], 'can find the unique values of an unsorted array');
155 …assert.deepEqual(_.uniq(list, true), [1, 2, 3], 'can find the unique values of a sorted array fast…
160 …assert.deepEqual(_.uniq(list, false, iterator), expected, 'uses the result of `iterator` for uniqu…
161 …assert.deepEqual(_.uniq(list, iterator), expected, '`sorted` argument defaults to false when omitt…
162 …assert.deepEqual(_.uniq(list, 'name'), expected, 'when `iterator` is a string, uses that key for c…
167 …assert.deepEqual(_.uniq(list, true, iterator), expected, 'uses the result of `iterator` for unique…
168 …assert.deepEqual(_.uniq(list, true, 'score'), expected, 'when `iterator` is a string, uses that ke…
170 …assert.deepEqual(_.uniq([{0: 1}, {0: 1}, {0: 1}, {0: 2}], 0), [{0: 1}, {0: 2}], 'can use falsey pl…
172 var result = (function(){ return _.uniq(arguments); }(1, 2, 1, 3, 1, 4));
176 …assert.deepEqual(_.uniq([a, b, a, b, c]), [a, b, c], 'works on values that can be tested for equiv…
[all …]
Dutility.js120 assert.equal(_.uniq(ids).length, ids.length, 'can generate a globally-unique stream of ids');
Dfunctions.js727 assert.deepEqual(_.uniq(collection, /b/g), ['foo', 'bar', 'bbiz']);
/plugin/quickstats/db/
DdataBaseStructure.txt2 [uniq] > count
/plugin/quickstats/
Dsyntax.php410 $uniq = $this->ips['uniq'];
418 … $renderer->doc .= "<span class='total'>" .$this->getLang('ttl_uniq_ip') ."$uniq</span></br>\n";
/plugin/fedauth/Auth/OpenID/
DServer.php1378 $uniq = base64_encode(Auth_OpenID_CryptUtil::getBytes(4));
1379 $handle = sprintf('{%s}{%x}{%s}', $assoc_type, intval(time()), $uniq);
/plugin/openid/Auth/OpenID/
DServer.php1528 $uniq = base64_encode(Auth_OpenID_CryptUtil::getBytes(4));
1529 $handle = sprintf('{%s}{%x}{%s}', $assoc_type, intval(time()), $uniq);
/plugin/dropfiles/
Dyarn.lock129 array-uniq "^1.0.1"
131 array-uniq@^1.0.1:
133 …resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e0588947…
2175 uniq "^1.0.1"
2869 uniq@^1.0.1:
2871 …resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a73…
/plugin/sequencediagram/bower_components/underscore/
Dunderscore-min.js5uniq=m.unique=function(n,t,r,e){m.isBoolean(t)||(e=r,r=t,t=!1),null!=r&&(r=x(r,e));for(var u=[],i=…
Dunderscore.js522 _.uniq = _.unique = function(array, isSorted, iteratee, context) {
552 return _.uniq(flatten(arguments, true, true));
Dunderscore-min.map1 …ct","startIndex","output","isArguments","j","len","without","difference","uniq","unique","isSorted…
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/
Dunderscore-min.js5uniq=m.unique=function(n,t,r,e){m.isBoolean(t)||(e=r,r=t,t=!1),null!=r&&(r=x(r,e));for(var u=[],i=…
Dunderscore.js537 _.uniq = _.unique = function(array, isSorted, iteratee, context) {
567 return _.uniq(flatten(arrays, true, true));
/plugin/tablelayout/
Dyarn.lock100 array-uniq "^1.0.1"
102 array-uniq@^1.0.1:
104 …resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e0588947…
/plugin/s5reloaded/ui/effects_support/
Dprototype.js1013 function uniq(sorted) { function
1022 return this.uniq().findAll(function(item) {
1092 uniq: uniq, property
/plugin/fetchmedia/
Dyarn.lock125 array-uniq "^1.0.1"
127 array-uniq@^1.0.1:
129 …resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e0588947…
/plugin/issuetracker/
Dprototype.js1135 function uniq(sorted) { function
1144 return this.uniq().findAll(function(item) {
1205 uniq: uniq, property
/plugin/codemirror/dist/modes/
Didl.min.js.map1 …l64indgen', 'ulindgen',\n 'ulon64arr', 'ulonarr', 'ulong', 'ulong64', 'uniq',\n 'unsharp_mas…
/plugin/sequencediagram/bower_components/lodash/test/
Dtest-fp.js483 actual = fp.uniq(other);
/plugin/freechat/phpfreechat/data/public/js/
Dprototype.js879 uniq: function(sorted) { method
888 return this.uniq().findAll(function(item) {
/plugin/sequencediagram/bower_components/lodash/doc/
DREADME.md60 * <a href="#_uniqarray">`_.uniq`</a>
1770 This method is like `_.uniq` except that it's designed and optimized
2100 <h3 id="_uniqarray"><code>_.uniq(array)</code></h3>
2101 …s#L8390 "View in source") [&#x24C3;](https://www.npmjs.com/package/lodash.uniq "See the npm packag…
2120 _.uniq([2, 1, 2]);
2132 This method is like `_.uniq` except that it accepts `iteratee` which is
2166 This method is like `_.uniq` except that it accepts `comparator` which
8606 `union`, `unionBy`, `unionWith`, `uniq`, `uniqBy`, `uniqWith`, `unset`,
/plugin/sequencediagram/bower_components/lodash/
Dlodash.js8390 function uniq(array) { function
16654 lodash.uniq = uniq;
/plugin/sequencediagram/bower_components/lodash/dist/
Dlodash.js8390 function uniq(array) { function
16654 lodash.uniq = uniq;

12