mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
17 lines
152 B
JavaScript
17 lines
152 B
JavaScript
// foo.js
|
|
|
|
var Foo = {};
|
|
|
|
Foo.hello = function(){
|
|
return "I am a foo";
|
|
}
|
|
|
|
// bar.js
|
|
|
|
var Bar = {};
|
|
|
|
Bar.hello = function(){
|
|
return "I am a bar";
|
|
}
|
|
|