mirror of
https://github.com/stCarolas/setup-maven.git
synced 2024-11-26 21:26:07 +08:00
12 lines
227 B
JavaScript
12 lines
227 B
JavaScript
var index = require('./index.js');
|
|
var mixin = require('./mixin.js');
|
|
|
|
// Default Export
|
|
|
|
// Add all of the Underscore functions to the wrapper object.
|
|
var _ = mixin(index);
|
|
// Legacy Node.js API.
|
|
_._ = _;
|
|
|
|
module.exports = _;
|