7 lines
101 B
TypeScript
7 lines
101 B
TypeScript
|
|
|
||
|
|
Object.defineProperty(Array.prototype, 'empty', {
|
||
|
|
get() {
|
||
|
|
return this.length === 0;
|
||
|
|
}
|
||
|
|
});
|