mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-21 12:00:15 -04:00
8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/history.min.js');
|
|
} else {
|
|
module.exports = require('./cjs/history.js');
|
|
}
|