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

12 lines
227 B
JavaScript

var mixin = require('./mixin.js');
var index = require('./index.js');
// Default Export
// Add all of the Underscore functions to the wrapper object.
var _ = mixin(index);
// Legacy Node.js API.
_._ = _;
module.exports = _;