这意味着一个函数在多个Node.js版本中都已添加。

huangapple go评论74阅读模式
英文:

What does it mean that a function has been added in multiple versions of node?

问题

例如,dns.setDefaultResultOrder 在版本 v16.4.0 和 v14.18.0 中已添加。

这是否意味着它在它们之间的某个版本中已被删除?

如果是的话,为什么会被删除而不是被弃用?

英文:

For example dns.setDefaultResultOrder has been added in versions v16.4.0 and v14.18.0

Does it mean that it had been deleted in one of the versions between them?

If yes, why would it be deleted instead of deprecated?

答案1

得分: 1

版本14和16都是LTS版本,可以在https://github.com/nodejs/node/blob/main/CHANGELOG.md上看到,因此这个功能已经在这两个版本中添加了,因为这两个版本仍然得到支持。

英文:

Both version 14 and 16 are LTS, as visible here https://github.com/nodejs/node/blob/main/CHANGELOG.md so this function have been added in both versions because both version are still supported.

huangapple
  • 本文由 发表于 2023年1月3日 23:45:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/74995556.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定