mirror of https://github.com/coolaj86/fizzbuzz.git
12 lines
119 B
JavaScript
12 lines
119 B
JavaScript
|
(function () {
|
||
|
"use strict";
|
||
|
|
||
|
var config
|
||
|
|
||
|
config = {
|
||
|
port: 5080
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|
||
|
}());
|