diff --git a/readme.md b/readme.md index 2875c43..95f31f0 100644 --- a/readme.md +++ b/readme.md @@ -675,7 +675,7 @@ An object that has an `equals` function which can be used to compare other objec Make array a setoid: ```js -Array.prototype.equals = (arr) => { +Array.prototype.equals = function (arr) { const len = this.length if (len !== arr.length) { return false