You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rich Trott c49adbff63 tools: update to ESLint 4.3.0 8 years ago
..
LICENSE doc: add eslint-plugin-markdown 8 years ago
index.js tools: update to ESLint 4.3.0 8 years ago
package.json tools: update to ESLint 4.3.0 8 years ago
readme.md tools: update to ESLint 4.3.0 8 years ago

readme.md

vfile-location Build Status Coverage Status

Convert between positions (line and column-based) and offsets (range-based) locations in a virtual file.

Installation

npm:

npm install vfile-location

Usage

var vfile = require('vfile');
var vfileLocation = require('vfile-location');
var location = vfileLocation(vfile('foo\nbar\nbaz'));

location.toOffset({line: 3, column: 3}); //=> 10
location.toPosition(offset); //=> {line: 3, column: 3, offset: 10}

API

location = vfileLocation(doc)

Get transform functions for the given doc (string) or file.

Returns an object with toOffset and toPosition.

location.toOffset(position)

Get the offset (number) for a line and column-based position in the bound file. Returns -1 when given invalid or out of bounds input.

location.toPosition(offset)

Get the line and column-based position for offset in the bound file.

License

MIT © Titus Wormer