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

Delta Between Two Patch Sets: test/stub-modules/utils.js

Issue 29375915: Issue 4878 - Start using ESLint for adblockpluscore (Closed)
Left Patch Set: Addressed Sebastian's initial feedback Created Feb. 21, 2017, 6:12 a.m.
Right Patch Set: Removed unused imports Created March 15, 2017, 3:11 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « test/stub-modules/prefs.js ('k') | test/subscriptionClasses.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 "use strict"; 1 "use strict";
2 2
3 let crypto = require("crypto"); 3 const crypto = require("crypto");
4 4
5 exports.Utils = { 5 exports.Utils = {
6 generateChecksum(lines) 6 generateChecksum(lines)
7 { 7 {
8 let buffer = new Buffer(lines.join("\n"), "utf-8"); 8 let buffer = new Buffer(lines.join("\n"), "utf-8");
9 let hash = crypto.createHash("md5"); 9 let hash = crypto.createHash("md5");
10 hash.update(buffer); 10 hash.update(buffer);
11 return hash.digest("base64").replace(/=+$/, ""); 11 return hash.digest("base64").replace(/=+$/, "");
12 }, 12 },
13 yield() {} 13 yield() {}
14 }; 14 };
LEFTRIGHT

Powered by Google App Engine
This is Rietveld