| Index: src/harmony-array-includes.js
|
| diff --git a/src/harmony-array-includes.js b/src/harmony-array-includes.js
|
| index b133f1ec8c511e49e333856a4cace3089e263127..8710d9a300d13386cbc140dfcfeab0c569bdefa6 100644
|
| --- a/src/harmony-array-includes.js
|
| +++ b/src/harmony-array-includes.js
|
| @@ -16,7 +16,7 @@ var GlobalArray = global.Array;
|
| // https://github.com/tc39/Array.prototype.includes
|
| // 6e3b78c927aeda20b9d40e81303f9d44596cd904
|
| function ArrayIncludes(searchElement, fromIndex) {
|
| - var array = $toObject(this);
|
| + var array = TO_OBJECT(this);
|
| var len = $toLength(array.length);
|
|
|
| if (len === 0) {
|
|
|