Claude Pache (2013-08-30T12:35:15.000Z)
domenic at domenicdenicola.com (2013-09-08T00:26:01.780Z)
The `uncurryThis` metafunction, given as example in [1], needs to correct the length of a function produced by `bind`. Simplified version: ```js uncurryThis = f => Function.protytpe.call.bind(f) // uncurryThis(f).length == 1 instead of f.length + 1 ``` So, yes, `bind` should produce functions with mutable length. [1]: http://www.mail-archive.com/[email protected]/msg21786.html