我直接在Stripe文档中并在正确的环境中获取代码示例。为什么代码示例失败?
// In Node 10:
for await (const customer of stripe.customers.list({limit: 3})) {
// Do something with customer
}
这提供了错误:
for await (const customer of stripe.customers.list({limit: 3})) {
^^^^^
SyntaxError: Unexpected reserved word
为什么这些文档中的代码会给出错误,如何解决?