How to export a prototype method?
I created a prototype method:
Array.prototype.remove = function(elementToRemove: any): void {
var __idx = this.indexOf(elementToRemove);
if (__idx >= 0) {
this.splice(__idx, 1);
} else {
throw new Error(`Cannot find element ${elementToRemove}`)
}
}
and I want to export it and use in another file. But I don't know how to add export to it:
both
export Array.prototype.remove = function(elementToRemove: any)
and
Array.prototype.remove = export function(elementToRemove: any)
doesn't work, I received 'Expression expected' Error. So how can I export it?
ps: I'm not using nodejs, I'm using web frontend in chrome with HTML and CSS.