projecte_ionic/node_modules/stylus/lib/functions/convert.js
2022-02-09 18:30:03 +01:00

18 lines
330 B
JavaScript
Executable file

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;