UNPKG

cloudcmd

Version:

File manager for the web with console and editor

15 lines (10 loc) 271 B
const isString = (a) => typeof a === 'string'; export default (value) => { if (!isString(value)) return ''; if (value.length === 1) return ''; if (value && !value.includes('/')) return `/${value}`; return value; };