UNPKG

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