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);