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: "use strict"; Created Jan. 16, 2017, 3:30 a.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
« no previous file with comments | « lib/filterComposer.js ('k') | lib/icon.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/filterValidation.js
diff --git a/lib/filterValidation.js b/lib/filterValidation.js
index f5de14b7a75c670802a37fa676a10cb51c51dcd5..adb083013b53769c761aa4147f73e397b380f154 100644
--- a/lib/filterValidation.js
+++ b/lib/filterValidation.js
@@ -17,6 +17,8 @@
/** @module filterValidation */
+"use strict";
+
let {Filter, InvalidFilter, ElemHideBase} = require("filterClasses");
let {Utils} = require("utils");
@@ -115,7 +117,7 @@ let parseFilter =
* @param {string} text
* @return {ParsedFilter}
*/
-exports.parseFilter = function(text)
+exports.parseFilter = text =>
{
let filter = null;
text = Filter.normalize(text);
@@ -149,7 +151,7 @@ exports.parseFilter = function(text)
* @param {string} text
* @return {ParsedFilters}
*/
-exports.parseFilters = function(text)
+exports.parseFilters = text =>
{
let lines = text.split("\n");
let filters = [];
« no previous file with comments | « lib/filterComposer.js ('k') | lib/icon.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld