UNPKG

fliphub-monorepo

Version:
10 lines (9 loc) 221 B
module.exports = function getFileAndPath(file) { const split = file.split('/') const fileAndPath = { file: split.pop(), paths: split.join('/'), } fileAndPath.dir = fileAndPath.paths return fileAndPath }