mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 08:17:34 -04:00
18 lines
351 B
JavaScript
18 lines
351 B
JavaScript
|
"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;
|