UNPKG

officiavoluptas

Version:
8 lines (5 loc) 241 B
const path = require('path') const getFullPath = (filePath) => path.join(process.cwd(), filePath) const isNotEmpty = (str) => str.length > 0 const uniq = (arr) => Array.from(new Set(arr)) module.exports = { getFullPath, isNotEmpty, uniq }