source:
trip-planner-front/node_modules/postcss-values-parser/lib/operator.js
Last change on this file was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 259 bytes |
Line | |
---|---|
1 | 'use strict'; |
2 | |
3 | const Container = require('./container'); |
4 | const Node = require('./node'); |
5 | |
6 | class Operator extends Node { |
7 | constructor (opts) { |
8 | super(opts); |
9 | this.type = 'operator'; |
10 | } |
11 | } |
12 | |
13 | Container.registerWalker(Operator); |
14 | |
15 | module.exports = Operator; |
Note:
See TracBrowser
for help on using the repository browser.