index.js 282 B

1234567
  1. /* Copyright (c) 2017 Environmental Systems Research Institute, Inc.
  2. * Apache-2.0 */
  3. var isBrowser = typeof window !== 'undefined';
  4. // allow consuming libraries to provide their own Promise implementations
  5. export default {
  6. Promise: isBrowser ? window['Promise'] : undefined
  7. };