有没有办法检查谷歌应用脚本中的内置类型?我不知道如何访问内置类型的构造函数。所以我不能使用 instaceof 运算符。
例如配置文件(https://developers.google.com/apps-script/class_analytics_v3_schema_profile)
function getReportDataForProfile(profile) {
if (profile instanceof Profile) // Profile is undefined...
...
}
还有什么有点令人困惑:当我得到一个 Profile 实例时(在变量配置文件中)
profile.constructor // is undefined