Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/i18n / dist / cjs / node_modules / snapdragon / lib / position.js
Size: Mime:
'use strict';

Object.defineProperty(exports, '__esModule', { value: true });

var index = require('../../define-property/index.js');

/**
 * Store position for a node
 */

var position = function Position(start, parser) {
  this.start = start;
  this.end = { line: parser.line, column: parser.column };
  index.default(this, 'content', parser.orig);
  index.default(this, 'source', parser.options.source);
};

exports.__moduleExports = position;
exports.default = position;
//# sourceMappingURL=position.js.map