UNPKG
mdui.editor
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Material Design 样式的富文本编辑器
github.com/zdhxiong/mdui.editor
zdhxiong/mdui.editor
mdui.editor
/
es
/
utils
/
url.js
15 lines
(14 loc)
•
321 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * 为链接补充 http:// 前缀 *
@param
url
*/
export
function
correctUrl
(
url
) { url = url.
toLowerCase
();
if
(url.
indexOf
(
'http://'
) <
0
&& url.
indexOf
(
'https://'
) <
0
&& url.
indexOf
(
'ftp://'
) <
0
&& url.
indexOf
(
'//'
) <
0
) { url =
`http://
${url}
`
; }
return
url; }