Skip to content

Commit

Permalink
Fixed indentation for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mde committed Jun 10, 2018
1 parent ff15d6d commit 720ab7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ejs.js
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,8 @@ Template.prototype = {
var open = utils.escapeRegExpChars(this.opts.openDelimiter);
var close = utils.escapeRegExpChars(this.opts.closeDelimiter);
str = str.replace(/%/g, delim)
.replace(/</g, open)
.replace(/>/g, close);
.replace(/</g, open)
.replace(/>/g, close);
return new RegExp(str);
},

Expand Down

0 comments on commit 720ab7f

Please sign in to comment.