Object.has.call
// typescript definition
interface Object {
has: (prop: string) => boolean;
}
// typescript
Object.prototype.has = function(this: { [key:string]: any }, prop) {
return Object.prototype.hasOwnProperty(this, prop);
}
// javascript
Object.prototype.has = function(prop) {
return Object.prototype.hasOwnProperty(this, prop);
}
Dimas Lanjaka