MCPcopy Index your code
hub / github.com/github/copilot-sdk / isIntegerValue

Function isIntegerValue

scripts/codegen/utils.ts:477–479  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

475const INT32_MAX = 2 ** 31 - 1;
476
477function isIntegerValue(value: unknown): value is number {
478 return Number.isInteger(value);
479}
480
481export function isIntegerSchemaBoundedToInt32(schema: JSONSchema7): boolean {
482 return (

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…