thehyve / react-json-to-table

react-json-to-table
GNU General Public License v3.0
36 stars 28 forks source link

support json value of null #4

Closed liyuanqiu closed 5 years ago

liyuanqiu commented 5 years ago
typeof null === 'object'

So if some value is null in JSON, an error will be thrown because of

Object.keys(null)

is illegal.