Is the default timeout in axios 1000?

look at the official document of axios.
link:
https://www.kancloud.cn/yunye.

found that it does not specify how long the default timeout is, and I haven"t noticed this problem before. There is only:

in the document.

clipboard.png
I would like to ask you: is the default timeout for axios 1000?

Oct.22,2021

speechless, what kind of official document is this?
https://github.com/axios/axios

  // `timeout` specifies the number of milliseconds before the request times out.
  // If the request takes longer than `timeout`, the request will be aborted.
  timeout: 1000, // default is `0` (no timeout)

this timeout is based on the default timeout of XMLHttpRequest, and if I guess correctly, it is calculated by the timeout of tcp


look at the original English document
Chinese is not fully translated
https://github.com/axios/axios

  // `timeout` specifies the number of milliseconds before the request times out.
  // If the request takes longer than `timeout`, the request will be aborted.
  timeout: 1000, // default is `0` (no timeout)
Menu