3aa4eb8fec3c31eba6a352f88645ef965945a670
[yaffs-website] / extras / my_custom_functions_string_conversion.js
1 var sass = require('../../..');
2
3 module.exports = {
4   'foo($a)': function(str) {
5     str = str.getValue().replace(/['"]/g, '');
6     return new sass.types.String('"' + str + str + '"');
7   }
8 };