Files
30-seconds-of-code/node_modules/remark-parse/lib/locate/url.js
2019-08-20 15:52:05 +02:00

27 lines
449 B
JavaScript

'use strict'
module.exports = locate
var protocols = ['https://', 'http://', 'mailto:']
function locate(value, fromIndex) {
var length = protocols.length
var index = -1
var min = -1
var position
if (!this.options.gfm) {
return -1
}
while (++index < length) {
position = value.indexOf(protocols[index], fromIndex)
if (position !== -1 && (position < min || min === -1)) {
min = position
}
}
return min
}