Initial commit
[yaffs-website] / node_modules / node-sass / test / fixtures / 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 };