You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

map.js 280B

123456789
  1. if (process.env.npm_package_name === 'pseudomap' &&
  2. process.env.npm_lifecycle_script === 'test')
  3. process.env.TEST_PSEUDOMAP = 'true'
  4. if (typeof Map === 'function' && !process.env.TEST_PSEUDOMAP) {
  5. module.exports = Map
  6. } else {
  7. module.exports = require('./pseudomap')
  8. }