1
0
mirror of https://github.com/thangisme/notes.git synced 2024-11-01 05:27:15 -04:00
notes/node_modules/postcss-media-query-parser/dist/nodes/Node.js

18 lines
351 B
JavaScript
Raw Normal View History

2017-03-09 13:16:08 -05:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
/**
* A very generic node. Pretty much any element of a media query
*/
function Node(opts) {
this.after = opts.after;
this.before = opts.before;
this.type = opts.type;
this.value = opts.value;
this.sourceIndex = opts.sourceIndex;
}
exports.default = Node;