array-kit 0.2.7 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/inPlaceFilter.js +1 -1
- package/package.json +1 -1
package/lib/inPlaceFilter.js
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
* thisArg: what is used as `this` inside the callback function
|
|
40
40
|
* forceKey: force that key instead of the index of the current element (useful for other libs)
|
|
41
41
|
*/
|
|
42
|
-
module.exports = ( src , fn , thisArg , forceKey )
|
|
42
|
+
module.exports = function( src , fn , thisArg , forceKey ) {
|
|
43
43
|
const hasForcedKey = arguments.length >= 4 ;
|
|
44
44
|
|
|
45
45
|
let value ,
|