Some checks failed
Build and Deploy / build-macos (push) Failing after 7s
Build and Deploy / build-linux (push) Has been cancelled
Build and Deploy / build-windows (CLANG64) (push) Has been cancelled
Build and Deploy / package-dist (push) Has been cancelled
Build and Deploy / deploy-itch (push) Has been cancelled
Build and Deploy / deploy-gitea (push) Has been cancelled
15 lines
254 B
JavaScript
15 lines
254 B
JavaScript
// Example module file for jj_mod
|
|
|
|
function format_number(n) {
|
|
return n.toFixed(2)
|
|
}
|
|
|
|
function random_range(min, max) {
|
|
return Math.random() * (max - min) + min
|
|
}
|
|
|
|
return {
|
|
format_number: format_number,
|
|
random_range: random_range,
|
|
PI: 3.14159
|
|
} |