From af01621484a57091003c5345f926e2ce16819c9a Mon Sep 17 00:00:00 2001 From: Nathan Adams Date: Tue, 17 Nov 2020 22:08:01 +0100 Subject: [PATCH] web: Rename PublicAPI.local_compatible to PublicAPI.localCompatible --- web/packages/core/src/public-api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/packages/core/src/public-api.ts b/web/packages/core/src/public-api.ts index 544588989..615e633be 100644 --- a/web/packages/core/src/public-api.ts +++ b/web/packages/core/src/public-api.ts @@ -189,7 +189,7 @@ export class PublicAPI { * * @returns An instance of the Source API */ - local_compatible(): SourceAPI | null { + localCompatible(): SourceAPI | null { if (this.sources.local !== undefined) { return this.satisfying("^" + this.sources.local.version); } else {