react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
15 lines (11 loc) • 320 B
JavaScript
;
var define = require('define-property');
/**
* Store position for a node
*/
module.exports = function Position(start, parser) {
this.start = start;
this.end = { line: parser.line, column: parser.column };
define(this, 'content', parser.orig);
define(this, 'source', parser.options.source);
};