UNPKG

@lipagas/ember-core

Version:

Provides all the core services, decorators and utilities for building a Fleetbase extension for the Console.

12 lines (9 loc) 265 B
export default function numbersOnly(string, keepDecimals = false) { if (typeof string !== 'string') { return string; } if (keepDecimals === true) { return string.replace(/[^0-9.]+/g, ''); } return string.replace(/\D+/g, ''); }