mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
15 lines
257 B
JavaScript
15 lines
257 B
JavaScript
'use strict';
|
|
|
|
module.exports = (value) => {
|
|
if (typeof value !== 'string')
|
|
return value;
|
|
|
|
if (value && !~value.indexOf('/'))
|
|
return '/' + value;
|
|
|
|
if (value.length === 1)
|
|
return '';
|
|
|
|
return value;
|
|
};
|
|
|