Hi, I use laravel mix which uses Webpack to optimize js files in common js modules. When I compile js assets it gives me an error on pqgrid.dev.js
Syntax Error: ‘with’ in strict mode
I read this is beacause js with() statement is not allowed in es6
How can I replace this fragment of code which uses with() statement to be es6 strict mode compatible?
with(obj.getRange = function() {
return {
r1: r,
c1: c
}
}, obj)