mirror of
https://github.com/Azure/setup-helm.git
synced 2025-11-07 21:16:57 +00:00
11 lines
227 B
JavaScript
11 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 = _;
|