DEV: removes _.each from codebase (#6629)

This commit is contained in:
Joffrey JAFFEUX
2018-11-20 14:46:58 +01:00
committed by GitHub
parent a2042c8e7d
commit 9672c92045
23 changed files with 77 additions and 81 deletions

View File

@ -21,7 +21,7 @@ export default Ember.Controller.extend({
var raw = this.get("model.query_plan"),
returned = "<pre class='badge-query-plan'>";
_.each(raw, function(linehash) {
raw.forEach(linehash => {
returned += escapeExpression(linehash["QUERY PLAN"]);
returned += "<br>";
});