UNPKG

ipfs-utils

Version:

Package to aggregate shared logic and dependencies for the IPFS ecosystem

15 lines (11 loc) 170 B
'use strict' /** * @param {string[]} args */ function join (...args) { if (args.length === 0) { return '.' } return args.join('/') } module.exports = join