mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-18 06:03:22 +09:00
added trailing semicolon to all function and module exports
This commit is contained in:
@@ -1,26 +1,26 @@
|
||||
const add = function() {
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
const subtract = function() {
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
const sum = function() {
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
const multiply = function() {
|
||||
|
||||
}
|
||||
};;
|
||||
|
||||
const power = function() {
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
const factorial = function() {
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
add,
|
||||
@@ -29,4 +29,4 @@ module.exports = {
|
||||
multiply,
|
||||
power,
|
||||
factorial
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user