英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论