Conexio amb la api
This commit is contained in:
parent
207c0ba819
commit
b12369cb47
48513 changed files with 7391639 additions and 7 deletions
18
node_modules/css-tree/lib/syntax/node/String.js
generated
vendored
Executable file
18
node_modules/css-tree/lib/syntax/node/String.js
generated
vendored
Executable file
|
|
@ -0,0 +1,18 @@
|
|||
var STRING = require('../../tokenizer').TYPE.String;
|
||||
|
||||
module.exports = {
|
||||
name: 'String',
|
||||
structure: {
|
||||
value: String
|
||||
},
|
||||
parse: function() {
|
||||
return {
|
||||
type: 'String',
|
||||
loc: this.getLocation(this.scanner.tokenStart, this.scanner.tokenEnd),
|
||||
value: this.consume(STRING)
|
||||
};
|
||||
},
|
||||
generate: function(node) {
|
||||
this.chunk(node.value);
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue