mirror of
https://github.com/azure/login.git
synced 2026-06-06 21:17:09 +00:00
11 lines
227 B
JavaScript
11 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 = _;
|