mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-11 05:11:40 +00:00
update
This commit is contained in:
16
node_modules/postcss-values-parser/lib/paren.js
generated
vendored
Normal file
16
node_modules/postcss-values-parser/lib/paren.js
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
'use strict';
|
||||
|
||||
const Container = require('./container');
|
||||
const Node = require('./node');
|
||||
|
||||
class Parenthesis extends Node {
|
||||
constructor (opts) {
|
||||
super(opts);
|
||||
this.type = 'paren';
|
||||
this.parenType = '';
|
||||
}
|
||||
}
|
||||
|
||||
Container.registerWalker(Parenthesis);
|
||||
|
||||
module.exports = Parenthesis;
|
Reference in New Issue
Block a user