You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
get/set functions for internal array, this._original. something like:
getarray(): object[]{returnthis._original
}setarray(input: object[]){// same as constructor but without reassigning `this._keys`// should be moved to new function to avoid code duplication
this._original=input.map((x)=>Object.assign({},x))this._transposed=transpose(this._keys,this._original)}
The text was updated successfully, but these errors were encountered:
get/set functions for internal array,
this._original
. something like:The text was updated successfully, but these errors were encountered: