array-to-object-keys
Advanced tools
Comparing version 1.0.20 to 1.0.21
@@ -26,5 +26,6 @@ /** @module array-to-object-keys | ||
* // {a: "value for a #1", b: "value for b #2"} | ||
* @function | ||
* @param {string[]} array Keys for the generated object | ||
* @param {valueGenerator|*} [valueGenerator=null] Optional function that sets the object values based on key and index | ||
* @returns {Object<string, *>} A generated object based on the array input | ||
* @returns {object<string, *>} A generated object based on the array input | ||
*/ | ||
@@ -31,0 +32,0 @@ export default function(array: string[], valueGenerator?: valueGenerator | any): { |
/*! | ||
*** array-to-object-keys 1.0.20 | ||
*** array-to-object-keys 1.0.21 | ||
*** Copyright © 2019, Jaid <jaid.jsx@gmail.com> (https://github.com/Jaid) | ||
@@ -4,0 +4,0 @@ *** @license MIT |
@@ -1,1 +0,1 @@ | ||
{"author":{"name":"Jaid","email":"jaid.jsx@gmail.com","url":"https://github.com/Jaid"},"bugs":"https://github.com/Jaid/array-to-object-keys/issues","description":"Converts an array to an object where the keys are the array entries and the values are customizable in a function.","homepage":"https://array-to-object-keys.jaid.codes","keywords":["array","array-manipulations","array-map","convert","javascript-array","javascript-object","keys","lang","object","values"],"license":"MIT","name":"array-to-object-keys","repository":"github:Jaid/array-to-object-keys","types":"index.d.ts","version":"1.0.20"} | ||
{"author":{"name":"Jaid","email":"jaid.jsx@gmail.com","url":"https://github.com/Jaid"},"bugs":"https://github.com/Jaid/array-to-object-keys/issues","description":"Converts an array to an object where the keys are the array entries and the values are customizable in a function.","homepage":"https://array-to-object-keys.jaid.codes","keywords":["array","array-manipulations","array-map","convert","javascript-array","javascript-object","keys","lang","object","values"],"license":"MIT","name":"array-to-object-keys","repository":"github:Jaid/array-to-object-keys","types":"index.d.ts","version":"1.0.21"} |
Sorry, the diff of this file is not supported yet
11983
45