Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions lib/preprocess.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,20 +187,17 @@ function preprocessor(src, context, opts, noRestoreEol) {
});

rv = replace(rv, opts.type.exec, function (match, name, value) {
name = (name || '').trim();
value = value || '';
var reToken = new RegExp(/^\s*(?:("|')(.*?)(?:\1\s*,?|$)|([^,]*?)\s*(?:,|$))/),
params = [];

var params = value.split(',');
var stringRegex = /^['"](.*)['"]$/;
function token2param(s, q, str, prop) {
params.push(typeof str !== 'undefined' ? str : getDeepPropFromObj(context, prop));
return '';
}

params = params.map(function(param){
param = param.trim();
if (stringRegex.test(param)) { // handle string parameter
return param.replace(stringRegex, '$1');
} else { // handle variable parameter
return getDeepPropFromObj(context, param);
}
});
name = (name || '').trim();
value = value == null ? ' ' : value + ' '; // space for end of comma
while (value.length) { value = value.replace(reToken, token2param); }

var fn = getDeepPropFromObj(context, name);
if (!fn || typeof fn !== 'function') return '';
Expand Down