console.js 426 B

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