UNPKG

298 BJavaScriptView Raw
1'use strict';
2
3// This determines which build to use based on the `NODE_ENV` of your end user.
4if (process.env.NODE_ENV === 'production') {
5 module.exports = require('./dist/typesafe-actions.cjs.production.js');
6} else {
7 module.exports = require('./dist/typesafe-actions.cjs.development.js');
8}