index.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. 'use strict'
  2. module.exports = factory
  3. function factory(file) {
  4. var value = String(file)
  5. var indices = []
  6. var search = /\r?\n|\r/g
  7. while (search.exec(value)) {
  8. indices.push(search.lastIndex)
  9. }
  10. indices.push(value.length + 1)
  11. return {
  12. toPoint: offsetToPoint,
  13. toPosition: offsetToPoint,
  14. toOffset: pointToOffset
  15. }
  16. // Get the line and column-based `point` for `offset` in the bound indices.
  17. function offsetToPoint(offset) {
  18. var index = -1
  19. if (offset > -1 && offset < indices[indices.length - 1]) {
  20. while (++index < indices.length) {
  21. if (indices[index] > offset) {
  22. return {
  23. line: index + 1,
  24. column: offset - (indices[index - 1] || 0) + 1,
  25. offset: offset
  26. }
  27. }
  28. }
  29. }
  30. return {}
  31. }
  32. // Get the `offset` for a line and column-based `point` in the bound
  33. // indices.
  34. function pointToOffset(point) {
  35. var line = point && point.line
  36. var column = point && point.column
  37. var offset
  38. if (!isNaN(line) && !isNaN(column) && line - 1 in indices) {
  39. offset = (indices[line - 2] || 0) + column - 1 || 0
  40. }
  41. return offset > -1 && offset < indices[indices.length - 1] ? offset : -1
  42. }
  43. }