UNPKG

426 BJavaScriptView Raw
1/** @license MIT License (c) copyright 2010-2014 original author or authors */
2/** @author Brian Cavalier */
3/** @author John Hann */
4
5(function(define) { 'use strict';
6define(function(require) {
7
8 var monitor = require('../monitor');
9 var Promise = require('../when').Promise;
10
11 return monitor(Promise);
12
13});
14}(typeof define === 'function' && define.amd ? define : function(factory) { module.exports = factory(require); }));