mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-24 17:41:03 +01:00
16 lines
338 B
Go
16 lines
338 B
Go
/**
|
|
* Created by jiachenpan on 16/11/18.
|
|
*/
|
|
|
|
export function isValidUsername (str) {
|
|
if (!str) return false
|
|
if (str.length > 100) return false
|
|
return true
|
|
// const validMap = ['admin', 'editor']
|
|
// return validMap.indexOf(str.trim()) >= 0
|
|
}
|
|
|
|
export function isExternal (path) {
|
|
return /^(https?:|mailto:|tel:)/.test(path)
|
|
}
|