mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
/**
|
|
* Created by jiachenpan on 16/11/18.
|
|
*/
|
|
|
|
export function isvalidUsername (str) {
|
|
const validMap = ['admin', 'editor']
|
|
return validMap.indexOf(str.trim()) >= 0
|
|
}
|
|
|
|
export function isExternal (path) {
|
|
return /^(https?:|mailto:|tel:)/.test(path)
|
|
}
|