file-position

0.0.0 • Public • Published

file-position Flattr this!experimental

Given a row/column number, return the index of that character within the whole string

Usage

file-position

filePosition(src)(row, column)

Pass filePosition your source file src as a string, and it'll return a function. This function takes a row and a column parameter to look up.

In return, you'll get a single index pointing to the character's position in the entire string.

var position = require('file-position')
var fs = require('fs')
 
var file = fs.readFileSync(__filename, 'utf8')
 
var getIndex = position(src)
var column = 10
var row = 5
 
var index = getIndex(row, column)

License

MIT. See LICENSE.md for details.

Package Sidebar

Install

npm i file-position

Weekly Downloads

252

Version

0.0.0

License

MIT

Last publish

Collaborators

  • hughsk