Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
BehindTheMath committed Dec 3, 2020
1 parent a6d482a commit 148a939
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/hebrewcalendar/HebrewDateFormatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -780,8 +780,8 @@ export class HebrewDateFormatter {
return `${this.formatHebrewNumber(omer)} ${this.hebrewOmerPrefix}עומר`;
}

if (omer === 33) { // if lag b'omer
return 'Lag BaOmer';
if (omer === 33) { // if Lag B'Omer
return this.transliteratedHolidays[33];
}

return `Omer ${omer}`;
Expand Down
2 changes: 0 additions & 2 deletions src/polyfills/Utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/* eslint-disable no-inner-declarations */
import { DateTime, Info } from 'luxon';
import { NullPointerException } from './errors';

export namespace Utils {
// https://stackoverflow.com/a/40577337/8037425
Expand Down

0 comments on commit 148a939

Please sign in to comment.