UNPKG
generator-cdd-dev
Version:
latest (3.0.0)
3.0.0
Yeoman generator
github.com/bnhovde/generator-fed-up
bnhovde/generator-fed-up
generator-cdd-dev
/
app
/
templates
/
scripts
/
modules
/
moduleB.js
15 lines
(10 loc)
•
283 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Module B (example)
var
namespace = namespace || {}; (
function
(
$,
window
,
document
,
undefined
) {
'use strict'
; namespace.
ModuleB
=
function
(
) {
this
.
talk
=
function
(
text
){
console
.
log
(
'I am '
+ text); }; }; })(jQuery,
window
,
document
);