validate.js 256 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 /** * Created by jiachenpan on 16/11/18. */ export function isvalidUsername(str) { const valid_map = ['admin', 'editor'] return valid_map.indexOf(str.trim()) >= 0 } export function isExternal(path) { return /^(https?:|mailto:|tel:)/.test(path) }