hexo/node_modules/stylus/lib/functions/convert.js

18 lines
330 B
JavaScript
Raw Normal View History

2023-09-25 15:58:56 +08:00
var utils = require('../utils');
/**
* Like `unquote` but tries to convert
* the given `str` to a Stylus node.
*
* @param {String} str
* @return {Node}
* @api public
*/
function convert(str){
utils.assertString(str, 'str');
return utils.parseString(str.string);
};
convert.params = ['str'];
module.exports = convert;