10 lines
137 B
Python
10 lines
137 B
Python
import json
|
|
|
|
|
|
def is_json_serializable(x):
|
|
try:
|
|
json.dumps(x)
|
|
return True
|
|
except TypeError:
|
|
return False
|