Gekidou Update deps (#5530)

This commit is contained in:
Elias Nahum
2021-07-11 07:52:44 -04:00
committed by GitHub
parent 134c4a49c5
commit c64277bdbf
54 changed files with 16537 additions and 23546 deletions

View File

@@ -88,7 +88,7 @@ export const getRawRecordPairs = (raws: any[]): RecordPair[] => {
* @param {RawValue[]} raws
* @param {string} key
*/
export const getUniqueRawsBy = ({raws, key}:{ raws: RawValue[], key: string}) => {
export const getUniqueRawsBy = ({raws, key}: { raws: RawValue[]; key: string}) => {
return [...new Map(raws.map((item) => {
const curItemKey = item[key as keyof typeof item];
return [curItemKey, item];