Home
last modified time | relevance | path

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

12

/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A 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…
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…
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…
178 assert.deepEqual(_.uniq(null), [], 'returns an empty array when `array` is not iterable');
182 _.uniq(list, function(value, index, array) {
[all …]
H A Dutility.js120 assert.equal(_.uniq(ids).length, ids.length, 'can generate a globally-unique stream of ids');
H A Dfunctions.js727 assert.deepEqual(_.uniq(collection, /b/g), ['foo', 'bar', 'bbiz']);
/plugin/quickstats/db/
H A DdataBaseStructure.txt2 [uniq] > count
/plugin/quickstats/
H A 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/
H A 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/
H A DServer.php1528 $uniq = base64_encode(Auth_OpenID_CryptUtil::getBytes(4));
1529 $handle = sprintf('{%s}{%x}{%s}', $assoc_type, intval(time()), $uniq);
/plugin/dropfiles/
H A 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/
H A 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=…
H A Dunderscore.js522 _.uniq = _.unique = function(array, isSorted, iteratee, context) {
552 return _.uniq(flatten(arguments, true, true));
H A Dunderscore-min.map1 …ct","startIndex","output","isArguments","j","len","without","difference","uniq","unique","isSorted…
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/
H A 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=…
H A Dunderscore.js537 _.uniq = _.unique = function(array, isSorted, iteratee, context) {
567 return _.uniq(flatten(arrays, true, true));
/plugin/tablelayout/
H A 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/
H A Dprototype.js1013 function uniq(sorted) { function
1022 return this.uniq().findAll(function(item) {
1092 uniq: uniq,
/plugin/fetchmedia/
H A 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/
H A Dprototype.js1135 function uniq(sorted) { function
1144 return this.uniq().findAll(function(item) {
1205 uniq: uniq,
/plugin/codemirror/dist/modes/
H A Didl.min.js.map1 …l64indgen', 'ulindgen',\n 'ulon64arr', 'ulonarr', 'ulong', 'ulong64', 'uniq',\n 'unsharp_mas…
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest-fp.js483 actual = fp.uniq(other);
H A Dtest.js865 lodashBizarro.uniq(largeArray)
6772 ? func(getProp, _.uniq)
6773 : func(_.uniq, getProp);
7523 assert.deepEqual(_.uniq(largeArray), expected);
18488 var actual = lodashStable.uniq(lodashStable.map(array, function() {
18526 var actual = lodashStable.uniq(lodashStable.map(array, function() {
24853 actual = lodashStable.map(array, lodashStable.uniq);
24985 assert.strictEqual(lodashStable.uniq(actual).length, actual.length);
26655 assert.deepEqual(_.uniq(args), [1, null, [3], 5], message('uniq'));
/plugin/freechat/phpfreechat/data/public/js/
H A Dprototype.js879 uniq: function(sorted) {
888 return this.uniq().findAll(function(item) {
/plugin/sequencediagram/bower_components/lodash/doc/
H A 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/dist/
H A Dlodash.js8390 function uniq(array) {
16654 lodash.uniq = uniq;
/plugin/sequencediagram/bower_components/lodash/
H A Dlodash.js8390 function uniq(array) {
16654 lodash.uniq = uniq;
/plugin/highlightjs/highlight/
H A Dhighlight.pack.js1 …_s!":1,trace_var:1,transpose:1,trap:1,truncate:1,"tty?":1,type:1,ungetc:1,uniq:1,"uniq!":1,unpack:… property in hljs.LANGUAGES.ruby.c.keymethods

12