mirror of
https://github.com/coolaj86/fizzbuzz.git
synced 2024-11-16 17:29:04 +00:00
12 lines
119 B
JavaScript
12 lines
119 B
JavaScript
(function () {
|
|
"use strict";
|
|
|
|
var config
|
|
|
|
config = {
|
|
port: 5080
|
|
};
|
|
|
|
module.exports = config;
|
|
}());
|