No Description

index-default.js 215B

123456789101112
  1. define(['./index', './mixin'], function (index, mixin) {
  2. // Default Export
  3. // Add all of the Underscore functions to the wrapper object.
  4. var _ = mixin(index);
  5. // Legacy Node.js API.
  6. _._ = _;
  7. return _;
  8. });