mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 04:10:04 +02:00
8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
var DEFAULT_TIMEOUT = 5000;
|
|
|
|
function inlineTimeoutFrom(option) {
|
|
return option || DEFAULT_TIMEOUT;
|
|
}
|
|
|
|
module.exports = inlineTimeoutFrom;
|