Lucas
Results
2
comments of
Lucas
To fix special char bug: 1 . Add this function. **function escapeRegExp(str) { return str.replace(/[-[]\/{}()*+\?.\^\$|]/g, "\$&"); }** 2. Update line 133 to **var _reg = new RegExp(escapeRegExp(_p[i]), 'g');** To fix...
> I've deployed my lambdas with serverless framework and I got this only for one function, but not for the others. All functions are using the same role. Manually changing...