Blame view

node_modules/when/unfold.js 369 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  /** @license MIT License (c) copyright B Cavalier & J Hann */
  
  /**
   * unfold
   * @author: brian@hovercraftstudios.com
   */
  (function(define) {
  define(function(require) {
  
  	/**
  	 * @deprecated Use when.unfold
  	 */
  	return require('./when').unfold;
  
  });
  })(typeof define === 'function' && define.amd ? define : function (factory) { module.exports = factory(require); } );