9d5aa363cf
- helpers should always be a function, but in #1639 one seems to be undefined. This was not a problem before 4.6 because helpers weren't wrapped then. Now, we must take care only to wrap helpers (when adding the "lookupProperty" function to the options), if they are really functions.
14 lines
568 B
JavaScript
14 lines
568 B
JavaScript
export function wrapHelper(helper, transformOptionsFn) {
|
|
if (typeof helper !== 'function') {
|
|
// This should not happen, but apparently it does in https://github.com/wycats/handlebars.js/issues/1639
|
|
// We try to make the wrapper least-invasive by not wrapping it, if the helper is not a function.
|
|
return helper;
|
|
}
|
|
let wrapper = function(/* dynamic arguments */) {
|
|
const options = arguments[arguments.length - 1];
|
|
arguments[arguments.length - 1] = transformOptionsFn(options);
|
|
return helper.apply(this, arguments);
|
|
};
|
|
return wrapper;
|
|
}
|