Skip to content
Snippets Groups Projects
Commit 89e03bc2 authored by Luca Morandini's avatar Luca Morandini
Browse files

- Corrected s type in the func.js

parent e2833db1
Branches
Tags
No related merge requests found
......@@ -59,7 +59,7 @@ fdk.handle (function (input) {
return w.length > 1;
})
.forEach ((w) => {
counts[w] = (coun ts[w] ? counts[w] + 1 : 1);
counts[w] = (counts[w] ? counts[w] + 1 : 1);
});
return counts;
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment