UNPKG

@magnetarjs/utils

Version:

Magnetar utils like a logger for easier development

8 lines (7 loc) 245 B
import { isOdd, isEven, countCharacter } from './countHelpers.js'; export function isDocModule(path) { return isOdd(countCharacter(path, /\//g)); } export function isCollectionModule(path) { return isEven(countCharacter(path, /\//g)); }