cloudcmd
Version:
File manager for the web with console and editor
102 lines (78 loc) • 1.88 kB
JavaScript
import exec from 'execon';
const isString = (a) => typeof a === 'string';
export const escapeRegExp = (str) => {
const isStr = isString(str);
if (isStr)
str = str.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
return str;
};
/**
* get regexp from wild card
*/
export const getRegExp = (wildcard) => {
const escaped = `^${wildcard // search from start of line
.replace(/\./g, '\\.')
.replace(/\*/g, '.*')
.replace('?', '.?')}$`;
// search to end of line
return RegExp(escaped);
};
/**
* function gets file extension
*
* @param name
* @return ext
*/
export const getExt = (name) => {
const isStr = isString(name);
if (!isStr)
return '';
const dot = name.lastIndexOf('.');
if (~dot)
return name.substr(dot);
return '';
};
/**
* find object by name in array
*
* @param array
* @param name
*/
export const findObjByNameInArr = (array, name) => {
let ret;
if (!Array.isArray(array))
throw Error('array should be array!');
if (!isString(name))
throw Error('name should be string!');
array.some((item) => {
const is = item.name === name;
const isArray = Array.isArray(item);
if (is) {
ret = item;
return is;
}
if (!isArray)
return is;
return item.some((item) => {
const is = item.name === name;
if (is)
ret = item.data;
return is;
});
});
return ret;
};
/**
* start timer
* @param name
*/
export const time = (name) => {
exec.ifExist(console, 'time', [name]);
};
/**
* stop timer
* @param name
*/
export const timeEnd = (name) => {
exec.ifExist(console, 'timeEnd', [name]);
};