UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

7 lines (6 loc) 283 B
/** * Converts string to an integer of the specified radix. * If radix is undefined or 0, a radix of 10 is used (unlike native parseInt which auto-detects). * Drop-in replacement for lodash/parseInt. */ export default function parseIntFn(string: string, radix?: number): number;