6 lines
82 B
JavaScript
6 lines
82 B
JavaScript
(function (obj) {
|
|
for (var i in obj) {
|
|
exports[i] = obj[i];
|
|
}
|
|
})(OBJECT);
|