D
Size: a a a
D
В
В
MU
IS
j
M
ИД
MU
IS
/* returns true if first range inside second else returns false */
const isRangeInside = ([firstStart, firstEnd], [secondStart, secondEnd]) => firstStart >= secondStart && firstEnd <= secondEnd;
MU
IS
j
j
IS
IS
IS
j