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.
24 lines
428 B
24 lines
428 B
9 years ago
|
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);
|
||
|
};
|