UNPKG

el-beeswarm

Version:

<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;

18 lines (15 loc) 351 B
"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;