UNPKG
mapbox
Version:
latest (1.0.0-beta10)
1.0.0-beta9
1.0.0-beta8
1.0.0-beta7
1.0.0-beta6
1.0.0-beta5
1.0.0-beta4
1.0.0-beta3
1.0.0-beta2
1.0.0-beta10
1.0.0-beta1
1.0.0-beta
0.12.0
0.11.0
0.10.0
0.9.0
0.8.2
0.8.1
0.8.0
0.7.0
0.6.2
0.6.1
0.6.0
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
0.0.0
interface to mapbox services
github.com/mapbox/mapbox-sdk-js
mapbox/mapbox-sdk-js
mapbox
/
lib
/
promise.js
10 lines
(6 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
// Installs ES6 Promise polyfill if a native Promise is not available
if
(
typeof
Promise
===
'undefined'
) {
require
(
'es6-promise'
).
polyfill
(); }
module
.
export
=
Promise
;