Closed
Description
Refs #101 (review)
The idea is to replace all:
function myFunc (/* ... */) {
/* ... */
}
exports.myFunc = myFunc;
by:
exports.myFunc = function (/* ... */) {
/* ... */
}
Metadata
Metadata
Assignees
Labels
No labels
Refs #101 (review)
The idea is to replace all:
function myFunc (/* ... */) {
/* ... */
}
exports.myFunc = myFunc;
by:
exports.myFunc = function (/* ... */) {
/* ... */
}