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

Unified Diff: test/stub-modules/utils.js

Issue 29375915: Issue 4878 - Start using ESLint for adblockpluscore (Closed)
Patch Set: Addressed Sebastian's initial feedback Created Feb. 21, 2017, 6:12 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
Index: test/stub-modules/utils.js
diff --git a/test/stub-modules/utils.js b/test/stub-modules/utils.js
index 7ba964e0d24127435bbd005e642524f2f9cc4905..d28101485bc7c87df76eb7c8b7437ade0a4dca66 100644
--- a/test/stub-modules/utils.js
+++ b/test/stub-modules/utils.js
@@ -1,12 +1,14 @@
+"use strict";
+
let crypto = require("crypto");
exports.Utils = {
- generateChecksum: function(lines)
+ generateChecksum(lines)
{
let buffer = new Buffer(lines.join("\n"), "utf-8");
let hash = crypto.createHash("md5");
hash.update(buffer);
return hash.digest("base64").replace(/=+$/, "");
},
- yield: () => undefined
+ yield() {}
};
« test/_common.js ('K') | « test/stub-modules/prefs.js ('k') | test/subscriptionClasses.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld