Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 707 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 707 Bytes

Pandora Box DX Games List

Looking through all 3k games on the app itself is cumbersome without a keyboard, so I created this list.

The data

I took this data: Pandora Box Game List (Google Sheet)

And converted it to JSON: CSV2JSON

For removing empty attribute data

<textarea id=o></textarea>
<script>
o.innerHTML = JSON.stringify(arr.map(a => Object.keys(a).reduce((r, attr) => {
  if (a[attr]) r[attr] = a[attr];
  return r;
}, {})));
</script>