mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
8 lines
139 B
JavaScript
8 lines
139 B
JavaScript
hexo.extend.helper.register('url_check', function (p) {
|
|
|
|
let src = p ;
|
|
let reg = /^https?/ig;
|
|
return reg.test(src)
|
|
|
|
|
|
}) |