UNPKG
typicaljs
Version:
latest (0.1.0)
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Typical JavaScript utility.
github.com/codethestars/typicaljs
codethestars/typicaljs
typicaljs
/
src
/
typical.js
8 lines
(7 loc)
•
180 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
/*global define*/
(
function
(
)
{
'use strict'
;
define
([
'modules/array'
,
'modules/object'
], function (
array
,
object
) {
return
{
array
:
array
,
object
:
object
}; }); }());