compatibleLifetime.js 226 B

1234567891011
  1. function compatibleLifetime(options) {
  2. let _life = {}
  3. if (options && options.lifetimes) {
  4. _life = options.lifetimes
  5. } else if (options) {
  6. _life = options
  7. }
  8. return _life
  9. }
  10. module.exports = compatibleLifetime