Interface IsNumericOptions

Options for numeric string validation.

interface IsNumericOptions {
    noSymbols?: boolean;
}

Properties

Properties

noSymbols?: boolean

Rejects strings containing symbols (+, -, .) if true. Defaults to false.