Expected ')' JS error in IE after assigning a value to a function argument
You are using default parameter. It is a feature of ES6, and IE does not support this.
I would suggest to convert your code to ES5, like..
mapping: function (mappingObj, searchMap) {
if (!searchMap) searchMap = false;
}