MCPcopy Create free account
hub / github.com/webpack/webpack-cli / isFunction

Method isFunction

packages/webpack-cli/src/webpack-cli.ts:580–582  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

578 }
579
580 isFunction(value: unknown): value is CallableFunction {
581 return typeof value === "function";
582 }
583
584 capitalizeFirstLetter(str: string): string {
585 return str.length > 0 ? str.charAt(0).toUpperCase() + str.slice(1) : str;

Callers 1

loadConfigByPathMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected