summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/vfile-location/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/node_modules/vfile-location/index.js')
-rw-r--r--tools/node_modules/eslint/node_modules/vfile-location/index.js19
1 files changed, 8 insertions, 11 deletions
diff --git a/tools/node_modules/eslint/node_modules/vfile-location/index.js b/tools/node_modules/eslint/node_modules/vfile-location/index.js
index e2046ce22b..2d7c21c180 100644
--- a/tools/node_modules/eslint/node_modules/vfile-location/index.js
+++ b/tools/node_modules/eslint/node_modules/vfile-location/index.js
@@ -1,9 +1,7 @@
'use strict'
-/* Expose. */
module.exports = factory
-/* Factory. */
function factory(file) {
var contents = indices(String(file))
@@ -13,13 +11,12 @@ function factory(file) {
}
}
-/* Factory to get the line and column-based `position` for
- * `offset` in the bound indices. */
+// Factory to get the line and column-based `position` for `offset` in the bound
+// indices.
function offsetToPositionFactory(indices) {
return offsetToPosition
- /* Get the line and column-based `position` for
- * `offset` in the bound indices. */
+ // Get the line and column-based `position` for `offset` in the bound indices.
function offsetToPosition(offset) {
var index = -1
var length = indices.length
@@ -42,13 +39,13 @@ function offsetToPositionFactory(indices) {
}
}
-/* Factory to get the `offset` for a line and column-based
- * `position` in the bound indices. */
+// Factory to get the `offset` for a line and column-based `position` in the
+// bound indices.
function positionToOffsetFactory(indices) {
return positionToOffset
- /* Get the `offset` for a line and column-based
- * `position` in the bound indices. */
+ // Get the `offset` for a line and column-based `position` in the bound
+ // indices.
function positionToOffset(position) {
var line = position && position.line
var column = position && position.column
@@ -61,7 +58,7 @@ function positionToOffsetFactory(indices) {
}
}
-/* Get indices of line-breaks in `value`. */
+// Get indices of line-breaks in `value`.
function indices(value) {
var result = []
var index = value.indexOf('\n')