function rotateOasis()
{
/*var next_item = ($('#oasis .oasis-gallery-buttons__item_active').next().length > 0 ? $('#oasis .oasis-gallery-buttons__item_active').next() : $('#oasis .oasis-gallery-buttons__item:first'));
$(next_item).click();
_oasis_timeouts.push(setTimeout(function(){
rotateOasis();
}, _oasis_delay));*/
}
const value = "Какая-то строка для регулярки".toLowerCase(), reg = "Какая-то|строка|Какая-то".split("|");
reg.reduce(
(acc, item) => ~value.indexOf(item.toLowerCase()) && !~acc.indexOf(item.toLowerCase()) ? [...acc, item] : acc,
[]
);
for(var c=0;c<script.length;c++){
var bg = script[c].dataset.background;
var event = script[c].dataset.event;
var date = script[c].dataset.day;
// вызываем функцию создания обертки счетчика
script[c].appendChild(bg_count(bg, event, date));
}
script.forEach(
({ dataSet: { background, event, day } = {}, appendChild }) => {
appendChild(background, event, day)
}
);