🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
141 B
JavaScript
Executable File
8 lines
141 B
JavaScript
Executable File
var DEFAULT_TIMEOUT = 5000;
|
|
|
|
function inlineTimeoutFrom(option) {
|
|
return option || DEFAULT_TIMEOUT;
|
|
}
|
|
|
|
module.exports = inlineTimeoutFrom;
|