export function getTabsCount()

in src/helpers/count.js [4:11]


export function getTabsCount(children) {
  let tabCount = 0;
  deepForEach(children, (child) => {
    if (isTab(child)) tabCount++;
  });

  return tabCount;
}