stevenschmatz / export-google-form

:arrow_down_small: A small Google Apps Script file to export a form into a JSON file.
MIT License
105 stars 43 forks source link

TypeError: item[itemTypeConstructorName] is not a function #11

Open hanasantos opened 1 year ago

hanasantos commented 1 year ago

The error is in this code snippet.

// Downcast items to access type-specific properties

  var itemTypeConstructorName = snakeCaseToCamelCase("AS_" + item.getType().toString() + "_ITEM");  
  var typedItem = item[itemTypeConstructorName]();