def is_json_serializable()

in CloudFormation/converter/app.py [0:0]


    def is_json_serializable(value):
        try:
            json.dumps(value)
            return True
        except ValueError as e:
            print(e)
            return False