summaryrefslogtreecommitdiff
path: root/platform/node/index.js
diff options
context:
space:
mode:
authorAlexander Shalamov <alexander.shalamov@mapbox.com>2019-03-11 09:36:06 +0200
committerAlexander Shalamov <alexander.shalamov@mapbox.com>2019-03-11 13:43:08 +0200
commitdebbd08ff0cc41be2947d3de55c44be2cc4d4a64 (patch)
treef2f8521cc2fb32722b0e390f0edaddc6f7b9e3ef /platform/node/index.js
parent7cdc39bee90dbf7658cb280b4fba9e63de18bc31 (diff)
downloadqtlocation-mapboxgl-debbd08ff0cc41be2947d3de55c44be2cc4d4a64.tar.gz
Revert "[core] Use ES6 import / export syntax for node test harness"
This reverts commit c6598fc5da063f9b60204639cd619647cbbc89da.
Diffstat (limited to 'platform/node/index.js')
-rw-r--r--platform/node/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/node/index.js b/platform/node/index.js
index b5003c69eb..7ac44dd705 100644
--- a/platform/node/index.js
+++ b/platform/node/index.js
@@ -48,4 +48,4 @@ var Map = function(options) {
Map.prototype = mbgl.Map.prototype;
Map.prototype.constructor = Map;
-export default Object.assign(mbgl, { Map: Map });
+module.exports = Object.assign(mbgl, { Map: Map });