Hello! I noticed that smart client API has some javascript prototypes overwritten like Array.find(). Ex:
[].find
ƒ isc_Arra_find(_1,_2,_3){if(isc.isA.List(this)||!isc.isA.Function(_1)){var _4=this.findIndex(_1,_2,_3);return(_4!=-1)?this.get(_4):null}
var _5=Object(this),_4=Array.prototype.findIndex.call(_5,_1,_2,…
Is there a way to don't overwrite? i need to use to native code. Thanks
[].find
ƒ isc_Arra_find(_1,_2,_3){if(isc.isA.List(this)||!isc.isA.Function(_1)){var _4=this.findIndex(_1,_2,_3);return(_4!=-1)?this.get(_4):null}
var _5=Object(this),_4=Array.prototype.findIndex.call(_5,_1,_2,…
Is there a way to don't overwrite? i need to use to native code. Thanks
Comment