|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- # vfile-location
-
- [![Build][build-badge]][build]
- [![Coverage][coverage-badge]][coverage]
- [![Downloads][downloads-badge]][downloads]
- [![Size][size-badge]][size]
- [![Sponsors][sponsors-badge]][collective]
- [![Backers][backers-badge]][collective]
- [![Chat][chat-badge]][chat]
-
- Convert between positional (line and column-based) and offsets (range-based)
- locations in a [virtual file][vfile].
-
- ## Install
-
- [npm][]:
-
- ```sh
- npm install vfile-location
- ```
-
- ## Use
-
- ```js
- var vfile = require('vfile')
- var vfileLocation = require('vfile-location')
-
- var location = vfileLocation(vfile('foo\nbar\nbaz'))
-
- var offset = location.toOffset({line: 3, column: 3}) // => 10
- location.toPoint(offset) // => {line: 3, column: 3, offset: 10}
- ```
-
- ## API
-
- ### `location = vfileLocation(doc)`
-
- Get transform functions for the given `doc` (`string`) or [`file`][vfile].
-
- Returns an object with [`toOffset`][to-offset] and [`toPoint`][to-point].
-
- ### `location.toOffset(point)`
-
- Get the `offset` (`number`) for a line and column-based [`point`][point] in the
- bound file.
- Returns `-1` when given invalid or out of bounds input.
-
- ### `location.toPoint(offset)`
-
- Get the line and column-based [`point`][point] for `offset` in the bound file.
-
- ## Contribute
-
- See [`contributing.md`][contributing] in [`vfile/.github`][health] for ways to
- get started.
- See [`support.md`][support] for ways to get help.
-
- This project has a [code of conduct][coc].
- By interacting with this repository, organization, or community you agree to
- abide by its terms.
-
- ## License
-
- [MIT][license] © [Titus Wormer][author]
-
- <!-- Definitions -->
-
- [build-badge]: https://img.shields.io/travis/vfile/vfile-location.svg
-
- [build]: https://travis-ci.org/vfile/vfile-location
-
- [coverage-badge]: https://img.shields.io/codecov/c/github/vfile/vfile-location.svg
-
- [coverage]: https://codecov.io/github/vfile/vfile-location
-
- [downloads-badge]: https://img.shields.io/npm/dm/vfile-location.svg
-
- [downloads]: https://www.npmjs.com/package/vfile-location
-
- [size-badge]: https://img.shields.io/bundlephobia/minzip/vfile-location.svg
-
- [size]: https://bundlephobia.com/result?p=vfile-location
-
- [sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg
-
- [backers-badge]: https://opencollective.com/unified/backers/badge.svg
-
- [collective]: https://opencollective.com/unified
-
- [chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg
-
- [chat]: https://github.com/vfile/vfile/discussions
-
- [npm]: https://docs.npmjs.com/cli/install
-
- [contributing]: https://github.com/vfile/.github/blob/HEAD/contributing.md
-
- [support]: https://github.com/vfile/.github/blob/HEAD/support.md
-
- [health]: https://github.com/vfile/.github
-
- [coc]: https://github.com/vfile/.github/blob/HEAD/code-of-conduct.md
-
- [license]: license
-
- [author]: https://wooorm.com
-
- [vfile]: https://github.com/vfile/vfile
-
- [to-offset]: #locationtooffsetpoint
-
- [to-point]: #locationtopointoffset
-
- [point]: https://github.com/syntax-tree/unist#point
|