marko 5.37.26 → 5.37.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -234,7 +234,7 @@ var proto = AsyncStream.prototype = {
234
234
 
235
235
  toReadable() {
236
236
  return new ReadableStream({
237
- async start(ctrl) {
237
+ start: async (ctrl) => {
238
238
  const encoder = new TextEncoder();
239
239
  try {
240
240
  for await (const chunk of this) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marko",
3
- "version": "5.37.26",
3
+ "version": "5.37.27",
4
4
  "description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
5
5
  "keywords": [
6
6
  "front-end",
@@ -234,7 +234,7 @@ var proto = (AsyncStream.prototype = {
234
234
 
235
235
  toReadable() {
236
236
  return new ReadableStream({
237
- async start(ctrl) {
237
+ start: async (ctrl) => {
238
238
  const encoder = new TextEncoder();
239
239
  try {
240
240
  for await (const chunk of this) {