UNPKG

locutus

Version:

Locutus other languages' standard libraries to JavaScript for fun and educational purposes

5 lines (4 loc) 217 B
import type { NumericLike, PhpNullish } from '../_helpers/_phpTypes.ts'; type IntvalInput = NumericLike | boolean | PhpNullish; export declare function intval(mixedVar: IntvalInput, base?: number): number; export {};