You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
399 B
22 lines
399 B
5 years ago
|
export function isDef (v){
|
||
|
return v !== undefined && v !== null
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Remove an item from an array.
|
||
|
*/
|
||
|
export function remove (arr, item) {
|
||
|
if (arr.length) {
|
||
|
const index = arr.indexOf(item)
|
||
|
if (index > -1) {
|
||
|
return arr.splice(index, 1)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function isRegExp (v) {
|
||
|
return _toString.call(v) === '[object RegExp]'
|
||
|
}
|
||
|
|
||
|
const _toString = Object.prototype.toString
|