Skip to content

Commit d0ec65f

Browse files
committed
Make leftover name of gcd function
1 parent 149c16e commit d0ec65f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ function ThymeViewModel() {
9292

9393
// lodash extensions
9494
_.mixin({
95-
gcd: function gcd(a, b) {
95+
gcd: function (a, b) {
9696
return b ? _.gcd(b, a % b) : Math.abs(a);
9797
},
9898
pluralize: function (n, singular, plural) {

0 commit comments

Comments
 (0)