You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
428 B
23 lines
428 B
var utils = require('../utils') |
|
, nodes = require('../nodes'); |
|
|
|
/** |
|
* Unquote the given `string`. |
|
* |
|
* Examples: |
|
* |
|
* unquote("sans-serif") |
|
* // => sans-serif |
|
* |
|
* unquote(sans-serif) |
|
* // => sans-serif |
|
* |
|
* @param {String|Ident} string |
|
* @return {Literal} |
|
* @api public |
|
*/ |
|
|
|
module.exports = function unquote(string){ |
|
utils.assertString(string, 'string'); |
|
return new nodes.Literal(string.string); |
|
};
|
|
|