mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
'use strict';
|
|
|
|
module.exports = function(value) {
|
|
if (typeof value === 'string')
|
|
if (value && !~value.indexOf('/'))
|
|
value = '/' + value;
|
|
else if (value.length === 1)
|
|
value = '';
|
|
|
|
return value;
|
|
};
|