Skip to content
This repository has been archived by the owner on May 26, 2019. It is now read-only.

Commit

Permalink
Make Browserify bundle work in ES3 environments
Browse files Browse the repository at this point in the history
  • Loading branch information
ericf committed Jan 13, 2015
1 parent 9984899 commit ef9668d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions index.js
@@ -1,2 +1,4 @@
exports = module.exports = require('./lib/memoizer').default;
Object.defineProperty(exports, 'default', {value: exports});
'use strict';

exports = module.exports = require('./lib/memoizer')['default'];
exports['default'] = exports;

0 comments on commit ef9668d

Please sign in to comment.