get-point-text.js 179 B

1234567
  1. "use strict";
  2. exports.__esModule = true;
  3. // istanbul ignore next
  4. function getPointText(point) {
  5. return point.line + ":" + point.column;
  6. }
  7. exports.getPointText = getPointText;