vfile utility to convert between point (line/column) and offset (range) based locations
This is a tiny but useful package that facilitates conversions between points and offsets in a file.
This utility is useful when adding positional information to unist nodes, or when building packages that require location data, such as a set of lint rules.
This package is ESM only.
In Node.js (version 18+) with yarn:
yarn add @flex-development/vfile-location
See Git - Protocols | Yarn Β for details regarding installing from Git.
In Deno with esm.sh
:
import { Location } from 'https://esm.sh/@flex-development/vfile-location'
In browsers with esm.sh
:
<script type="module">
import { Location } from 'https://esm.sh/@flex-development/vfile-location'
</script>
import { Location, type Point } from '@flex-development/vfile-location'
import { read } from 'to-vfile'
import type * as unist from 'unist'
import type { VFile, Value } from 'vfile'
const point: Point = { column: 1, line: 21, offset: 474 }
const pt: Point = { column: 2, line: 47, offset: 1124 }
const file: VFile = await read('hrt.ts')
const val: Value = String(file).slice(point.offset, pt.offset + 1)
const location: Location = new Location(file)
const loc: Location = new Location(val, point)
console.log(location.offset({ ...point, offset: undefined })) // => point.offset
console.log(location.point(point.offset)) // => point
console.log(loc.offset({ ...pt, offset: undefined })) // => pt.offset
console.log(loc.point(pt.offset)) // => pt
This package exports the identifier Location
. There is no default export.
Create a new location index to translate between point and offset based locations in file
.
Pass a start
point to make relative conversions. Any point or offset accessed will be relative to the given point.
An incremental index can be built when file
is null
or undefined
, in which case indices
(and
place
) must be updated manually.
file
(Value
|VFile
|null
|undefined
) β file to indexstart
(Point
|null
|undefined
) β point before first character
(Indices
)
Map, where each key/value pair is either the index of a character in the file (offset) and a point,
or a line and column in the file and an offset.
Both the key and value are relative to start
.
Get an offset for point
.
π The offset for
point
is greater than or equal to0
whenpoint
is valid, and-1
whenpoint
is invalid.
point
(unist.Point
|null
|undefined
) β place in file
(Offset
) Index of character in file or -1
.
(Point
)
Current point.
π Useful for building an incremental index. This point is deeply equal to
start
when a file is auto-indexed and never altered.
Get a point for offset
.
π
point.column
andpoint.line
are greater than or equal to1
whenoffset
is valid, and-1
whenoffset
is invalid.
offset
(Offset
|null
|undefined
) β index of character in file
(Point
) Place in file.
(Readonly<Point>
)
Point before first character in file.
Column in a source file (1
-indexed integer) (TypeScript type).
type Column = number
Map, where each key/value pair is either the index of a character in a source file (offset) and a point, or a line and column in the source file and an offset (TypeScript type).
type Indices = { [offset: Offset]: Point; [point: SerializedPoint]: Offset }
Line in a source file (1
-indexed integer) (TypeScript type).
type Line = number
Index of a character in a source file (0
-indexed integer) (TypeScript type).
type Offset = number
One place in a source file (TypeScript interface).
column
(Column
) β column in source file (1
-indexed integer)line
(Line
) β line in source file (1
-indexed integer)offset
(Offset
) β index of character in source file (0
-indexed integer)
String representing one place in a source file (TypeScript type).
type SerializedPoint = `${Line}:${Column}`
This package is fully typed with TypeScript.
See CONTRIBUTING.md
.
This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.