blob: 4a4a112c76f4b31d2d53e63fcc36393e46bd340c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import * as allExports from './index.js';
import { mixin } from './index.js';
// Add all of the Underscore functions to the wrapper object.
var _ = mixin(allExports);
// Legacy Node.js API
_._ = _;
// Export the Underscore API.
export default _;
|