1.0.0 • Published 9 years ago

linemap v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
9 years ago

LineMap

Make conversions between character offsets and line numbers.

Usage

var LineMap = require('linemap');
var linemap = new LineMap(somestring);

// find out the character offset for the beginning of line 2
var offset = linemap.getOffsetForLine(2);

// find out what line number the character at offset 44 is on
var line = linemap.getLineForOffset(44);

License

MIT

1.0.0

9 years ago