UNPKG
todomvc
Version:
latest (0.1.1)
0.1.1
0.1.0
> Helping you select an MV\* framework
todomvc
/
examples
/
cujo
/
bower_components
/
wire
/
lib
/
plugin
/
defaultPlugins.js
15 lines
(12 loc)
•
266 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * defaultPlugins *
@author
: brian */
(
function
(
define
) {
define
(
function
(
require
) {
return
[
require
(
'./wirePlugin'
),
require
(
'./basePlugin'
) ]; }); }(
typeof
define ===
'function'
? define :
function
(
factory
) {
module
.
exports
=
factory
(
require
); }));