UNPKG
associativearray
Version:
latest (3.0.3)
3.0.3
3.0.2
3.0.1
3.0.0
2.1.0
2.0.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
Associative array
github.com/webdevelopland/associativearray
webdevelopland/associativearray
associativearray
/
index.js
10 lines
(8 loc)
•
248 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
function
exportAll
(
lib
) {
for
(
var
name
in
lib) {
if
(!
exports
.
hasOwnProperty
(name))
exports
[name] = lib[name]; } }
exportAll
(
require
(
'./js/associativearray'
));
exportAll
(
require
(
'./js/dictionary'
));
exportAll
(
require
(
'./js/validation'
));