(source: string | Uint8Array)
| 25 | }; |
| 26 | |
| 27 | const toSourceString = (source: string | Uint8Array): string => |
| 28 | typeof source === "string" ? source : Buffer.from(source).toString("utf8"); |
| 29 | |
| 30 | const bundleStatsPlugin = (): PluginOption => ({ |
| 31 | name: "boringstack-bundle-stats", |