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.

7 lines
141 B

4 years ago
  1. var DEFAULT_TIMEOUT = 5000;
  2. function inlineTimeoutFrom(option) {
  3. return option || DEFAULT_TIMEOUT;
  4. }
  5. module.exports = inlineTimeoutFrom;