UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

10 lines 287 B
/** * get1stDigitFromString( 'This8.0zsX n99umber') * @param str 'This8.0zsX n99umber' * @returns '8' */ export function get1stDigitFromString(str) { const match = str.match(/\d+/); return match ? match[0] : null; } //# sourceMappingURL=get1stDigitFromString.js.map