more code cleanup

This commit is contained in:
Michael Shamoon 2022-03-11 00:52:32 -08:00
parent 0826e0f96b
commit 20a6c5e7b7

View File

@ -40,9 +40,9 @@ export class LocalizedDateParserFormatter extends NgbDateParserFormatter {
* any parts of the string, e.g. allowing for 1/2/22, * any parts of the string, e.g. allowing for 1/2/22,
* which allows quick entry of the date on the numpad. * which allows quick entry of the date on the numpad.
*/ */
public preformatDateInput(value: string): string { private preformatDateInput(value: string): string {
let inputFormat = this.getDateInputFormat() const inputFormat = this.getDateInputFormat()
let dateSeparator = inputFormat.replace(/[dmy]/gi, '').charAt(0) const dateSeparator = inputFormat.replace(/[dmy]/gi, '').charAt(0)
if (this.separatorRegExp.test(value)) { if (this.separatorRegExp.test(value)) {
// split on separator, pad & re-join without separator // split on separator, pad & re-join without separator