extendscript-es6-shim
extendscript-es6-shim copied to clipboard
TODO
Object
- [ ] Object.assign (new method)
- [ ] Object.is (RC do not implement?)
- [ ] Object.setPrototypeOf (new method)
- [ ] Object.prototype.toString (ES5 FIX ?)
- [ ] Object.freeze (FIX)
- [ ] Object.seal (FIX)
- [ ] Object.preventExtensions (FIX)
- [ ] Object.isFrozen (FIX)
- [ ] Object.isSealed (FIX)
- [ ] Object.isExtensible (FIX)
- [ ] Object.getOwnPropertyDescriptor(FIX)
- [ ] Object.getPrototypeOf (FIX)
- [ ] Object.keys (FIX)
- [ ] Object.getOwnPropertyNames (FIX)
Function
- [x] Function.name Implemented in ExtendScript engine, but anonymous function has name 'anonymous' rather than empty string
Array
- [ ] Array.prototype.from verify code in repo
- [ ] Array.of
- [ ] Array.prototype.copyWithin
- [ ] Array.prototype.fill
- [ ] Array.prototype.find
- [ ] Array.prototype.findIndex
- [ ] Array.isArray()