react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
19 lines (13 loc) • 335 B
JavaScript
module.exports = locate
function locate(value, fromIndex) {
var asterisk = value.indexOf('**', fromIndex)
var underscore = value.indexOf('__', fromIndex)
if (underscore === -1) {
return asterisk
}
if (asterisk === -1) {
return underscore
}
return underscore < asterisk ? underscore : asterisk
}