UNPKG

120 BJavaScriptView Raw
1const RE = /^[./]|(^[a-zA-Z]:)/
2
3module.exports = v => RE.test(v)
4
5module.exports.removePrefix = v => v.replace(RE, '')