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.
 
 
 
 
 
 
Vse Mozhet Byt 15599cbc97 tools: update: eslint-plugin-markdown@1.0.0-beta.7 8 years ago
..
LICENSE tools: update: eslint-plugin-markdown@1.0.0-beta.7 8 years ago
index.js tools: update: eslint-plugin-markdown@1.0.0-beta.7 8 years ago
package.json tools: update: eslint-plugin-markdown@1.0.0-beta.7 8 years ago
readme.md tools: update: eslint-plugin-markdown@1.0.0-beta.7 8 years ago

readme.md

unist-util-stringify-position Build Status Coverage Status

Stringify a Unist position or location.

Installation

npm:

npm install unist-util-stringify-position

Usage

var stringify = require('unist-util-stringify-position');

stringify({line: 2, column: 3 }); //=> '2:3'

stringify({
  start: {line: 2},
  end: {line: 3}
}); //=> '2:1-3:1'

stringify({
  type: 'text',
  value: '!',
  position: {
    start: {line: 5, column: 11},
    end: {line: 5, column: 12}
  }
}); //=> '5:11-5:12'

API

stringifyPosition(node|location|position)

Stringify one position, a location (start and end positions), or a node’s location.

Parameters
  • node (Node) — Node whose 'position' property to stringify
  • location (Location) — Location whose 'start' and 'end' positions to stringify
  • position (Position) — Location whose 'line' and 'column' to stringify
Returns

string? — A range ls:cs-le:ce (when given node or location) or a point l:c (when given position), where l stands for line, c for column, s for start, and e for end. null is returned if the given value is neither node, location, nor position.

License

MIT © Titus Wormer