index.js 96 字节
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6 7
function isExternal(path) {
  return /^[a-z]+:/i.test(path)
}

module.exports = {
  isExternal
}