mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 18:19:35 +01:00
7 lines
196 B
JavaScript
7 lines
196 B
JavaScript
'use strict';
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./cjs/react-is.production.min.js');
|
|
} else {
|
|
module.exports = require('./cjs/react-is.development.js');
|
|
}
|