(fn)
| 329 | // uses the other technique. |
| 330 | const uncurryThis= |
| 331 | (fn)=> |
| 332 | (receiver, ...args)=> |
| 333 | apply(fn, receiver, args); |
| 334 | const arrayPush= uncurryThis(Array.prototype.push); |
| 335 | const arrayIncludes= uncurryThis(Array.prototype.includes); |
| 336 | const stringSplit= uncurryThis(String.prototype.split); |