tbusser / jscc

This is the website for the JavaScript Compatibility Checker
http://jscc.info
88 stars 17 forks source link

Support for "Object.values" #13

Open bennycode opened 7 years ago

bennycode commented 7 years ago

I used the following code snippet:

Object.values(object).forEach((val) => this.zeroize(val));

The JavaScript Compatibility Checker has correctly recognized the use of Array.prototype.forEach but it missed out on Object.values which finds only support in Chrome54+.