Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/filterValidation.js

Issue 29371763: Issue 4795 - Use modern JavaScript syntax (Closed)
Patch Set: Created Jan. 13, 2017, 12:11 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lib/filterValidation.js
diff --git a/lib/filterValidation.js b/lib/filterValidation.js
index f5de14b7a75c670802a37fa676a10cb51c51dcd5..02808d4205d713ce7cee20cfef0de19c8e55cdd8 100644
--- a/lib/filterValidation.js
+++ b/lib/filterValidation.js
@@ -115,7 +115,7 @@ let parseFilter =
* @param {string} text
* @return {ParsedFilter}
*/
-exports.parseFilter = function(text)
+exports.parseFilter = text =>
{
let filter = null;
text = Filter.normalize(text);
@@ -149,7 +149,7 @@ exports.parseFilter = function(text)
* @param {string} text
* @return {ParsedFilters}
*/
-exports.parseFilters = function(text)
+exports.parseFilters = text =>
{
let lines = text.split("\n");
let filters = [];
« chrome/ext/common.js ('K') | « lib/filterComposer.js ('k') | lib/icon.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld