Skip to content
This repository was archived by the owner on Jun 8, 2019. It is now read-only.

Commit 3f2a222

Browse files
committed
Make Browserify bundle work in ES3 environments
1 parent cbd5872 commit 3f2a222

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
'use strict';
22

3-
exports = module.exports = require('./lib/parser').default;
4-
Object.defineProperty(exports, 'default', {value: exports});
3+
exports = module.exports = require('./lib/parser')['default'];
4+
exports['default'] = exports;

0 commit comments

Comments
 (0)