Skip to content

Commit 02a132e

Browse files
committed
style: fat arrow all the lambdas!
1 parent 026589a commit 02a132e

File tree

4 files changed

+113
-117
lines changed

4 files changed

+113
-117
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"d3": "~3.5.12",
3030
"c3": "~0.4.11",
3131
"largest-triangle-three-buckets": "git://github.com/joshcarr/largest-triangle-three-buckets.js.git",
32-
"moment": "~2.10.6",
32+
"moment": "~2.11.1",
3333
"tether": "~1.1.1"
3434
},
3535
"resolutions": {

db.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ db.bind("machines");
1515
db.bind("experiments");
1616

1717
// Promisify all methods
18-
Object.keys(mongoskin).forEach(function(key) {
18+
Object.keys(mongoskin).forEach((key) => {
1919
var value = mongoskin[key];
2020
if (typeof value === "function") {
2121
Promise.promisifyAll(value);

0 commit comments

Comments
 (0)