Conexio amb la api
This commit is contained in:
parent
207c0ba819
commit
b12369cb47
48513 changed files with 7391639 additions and 7 deletions
16
node_modules/postcss-values-parser/lib/function.js
generated
vendored
Executable file
16
node_modules/postcss-values-parser/lib/function.js
generated
vendored
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
'use strict';
|
||||
|
||||
const Container = require('./container');
|
||||
|
||||
class FunctionNode extends Container {
|
||||
constructor (opts) {
|
||||
super(opts);
|
||||
this.type = 'func';
|
||||
// start off at -1 so we know there haven't been any parens added
|
||||
this.unbalanced = -1;
|
||||
}
|
||||
};
|
||||
|
||||
Container.registerWalker(FunctionNode);
|
||||
|
||||
module.exports = FunctionNode;
|
||||
Loading…
Add table
Add a link
Reference in a new issue