point.js 182 B

123456
  1. "use strict";
  2. exports.__esModule = true;
  3. function createPoint(offset, line, column) {
  4. return { offset: offset, line: line, column: column };
  5. }
  6. exports.createPoint = createPoint;