Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.js 180B

123456
  1. module.exports = function uniqs() {
  2. var list = Array.prototype.concat.apply([], arguments);
  3. return list.filter(function(item, i) {
  4. return i == list.indexOf(item);
  5. });
  6. };