Files
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

13 lines
215 B
JavaScript

define(['./mixin', './index'], function (mixin, index) {
// Default Export
// Add all of the Underscore functions to the wrapper object.
var _ = mixin(index);
// Legacy Node.js API.
_._ = _;
return _;
});