aboutsummaryrefslogtreecommitdiff
path: root/node_modules/when/unfold.js
blob: 807bcfca675dbffecf71a50951fc6dc12ebda38d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/** @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); } );