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.
@@ -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 ,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "array-kit",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "An array manipulation toolbox.",
5
5
  "main": "lib/array-kit.js",
6
6
  "directories": {