/** * Extract numbers from a delimited string. Does not do any error checking. * * This is roughly 25% faster than using String.split and parseInt (on Chrome). * * @param {string} string */ export default function numberExtractor(string: string, delimiter?: string): Generator; //# sourceMappingURL=numberExtractor.d.ts.map