jscc
jscc copied to clipboard
Support for "Object.values"
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+.