MCPcopy
hub / github.com/electron/forge / isBuildIdentifierConfig

Function isBuildIdentifierConfig

packages/api/core/src/util/forge-config.ts:27–33  ·  view source on GitHub ↗
(
  value: any,
)

Source from the content-addressed store, hash-verified

25
26/* eslint-disable @typescript-eslint/no-explicit-any */
27function isBuildIdentifierConfig(
28 value: any,
29): value is BuildIdentifierConfig<any> {
30 return (
31 value && typeof value === 'object' && value.__isMagicBuildIdentifierMap
32 );
33}
34
35const proxify = <T extends ProxiedObject>(
36 buildIdentifier: string | (() => string),

Callers 1

getFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected