UNPKG

@mapbox/jsxtreme-markdown

Version:
18 lines (12 loc) 253 B
'use strict'; module.exports = locate; function locate(value, fromIndex) { var index = value.indexOf('\n', fromIndex); while (index > fromIndex) { if (value.charAt(index - 1) !== ' ') { break; } index--; } return index; }