1
0

utils.js 99 B

1234567
  1. function isTest() {
  2. return process.env.TEST_ENV === 'test';
  3. }
  4. module.exports = {
  5. isTest
  6. };