unfold.js 369 B

1234567891011121314151617
  1. /** @license MIT License (c) copyright B Cavalier & J Hann */
  2. /**
  3. * unfold
  4. * @author: brian@hovercraftstudios.com
  5. */
  6. (function(define) {
  7. define(function(require) {
  8. /**
  9. * @deprecated Use when.unfold
  10. */
  11. return require('./when').unfold;
  12. });
  13. })(typeof define === 'function' && define.amd ? define : function (factory) { module.exports = factory(require); } );