R
Size: a a a
Э
R
__test__() {
this.arr = ['screen-is-visible-only-in-development', 'screen-is-visible-only-in-prod'];
this.str = 'screen-is-visible';
const result = [...this.arr].some(f => {
const next = String(this.str).localeCompare(f);
console.log('next', next);
return next;
});
console.log('result', result);
}
MM