在开发一个angular的项目,使用typescript。在写一个pipe的时候,用到了Object.values(),结果传入的Object的value解析出来了,显示也没有问题,但是在控制台报错。
Object.values()
难道typescript没有将这个方法Object.values()方法包含进去,但是为什么最后的结果还是正确的?
认证0级讲师
According to MDN, Object.values() is the content of es2017, so you need to modify tsconfig.json and change the target to es2017
According to MDN,
Object.values()
is the content of es2017, so you need to modify tsconfig.json and change the target to es2017