compatibleLifetime.js 247 B

123456789101112131415
  1. "use strict";
  2. function compatibleLifetime(options) {
  3. var _life = {};
  4. if (options && options.lifetimes) {
  5. _life = options.lifetimes;
  6. } else if (options) {
  7. _life = options;
  8. }
  9. return _life;
  10. }
  11. module.exports = compatibleLifetime;