From b972c6c8d01a15cbc6a801e4b4bd4f3e8ac38181 Mon Sep 17 00:00:00 2001 From: Denis Date: Fri, 6 Oct 2017 10:21:56 -0400 Subject: [PATCH] Support export default Ref: https://github.com/mapbox/supercluster/pull/62 --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 929fef9..5a134a8 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,7 @@ 'use strict'; module.exports = TinyQueue; +module.exports.default = TinyQueue; function TinyQueue(data, compare) { if (!(this instanceof TinyQueue)) return new TinyQueue(data, compare);