I hereby claim:
- I am thesofakillers on github.
- I am thesofakillers (https://keybase.io/thesofakillers) on keybase.
- I have a public key ASBBvOceItmt9kjOjgaRMbrZoF_7Fey0EAnLOPEZ35MwfQo
To claim this, I am signing this object:
| Linking Element | None | -(e)s | -(e)n | -e | -er | other | |
|---|---|---|---|---|---|---|---|
| Occurrence | 72.8 % | 14.8 % | 9.7 % | 1.3 % | 0.7 % | 0.7 % |
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * Converts an Object of Arrays to an Array of Objects | |
| * @param {Object} object_arrays An object of arrays where each array is of the same length | |
| * @returns {Array<Object>} An Array of objects where each key in each object corresponds to that element in the original array | |
| */ | |
| function obj_arraysTOarray_objs(object_arrays){ | |
| let final_array = object_arrays[Object.keys(object_arrays)[0]].map( | |
| // el is unused, but needs to be defined for map to give access to index i | |
| (_el, i) => { | |
| let internal_object = {}; |