File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2736,7 +2736,7 @@ const EasyCoder_Core = {
2736
2736
case `minute` :
2737
2737
case `second` :
2738
2738
var timestamp = null ;
2739
- if ( compiler . nextIs ( ) == `of` ) {
2739
+ if ( compiler . nextIs ( `of` ) ) {
2740
2740
timestamp = compiler . getNextValue ( ) ;
2741
2741
}
2742
2742
return {
@@ -2748,7 +2748,7 @@ const EasyCoder_Core = {
2748
2748
case `month` :
2749
2749
if ( compiler . nextTokenIs ( `number` ) ) {
2750
2750
var timestamp = null ;
2751
- if ( compiler . nextIs ( ) == `of` ) {
2751
+ if ( compiler . nextIs ( `of` ) ) {
2752
2752
timestamp = compiler . getNextValue ( ) ;
2753
2753
}
2754
2754
return {
Original file line number Diff line number Diff line change @@ -2736,7 +2736,7 @@ const EasyCoder_Core = {
2736
2736
case `minute` :
2737
2737
case `second` :
2738
2738
var timestamp = null ;
2739
- if ( compiler . nextIs ( ) == `of` ) {
2739
+ if ( compiler . nextIs ( `of` ) ) {
2740
2740
timestamp = compiler . getNextValue ( ) ;
2741
2741
}
2742
2742
return {
@@ -2748,7 +2748,7 @@ const EasyCoder_Core = {
2748
2748
case `month` :
2749
2749
if ( compiler . nextTokenIs ( `number` ) ) {
2750
2750
var timestamp = null ;
2751
- if ( compiler . nextIs ( ) == `of` ) {
2751
+ if ( compiler . nextIs ( `of` ) ) {
2752
2752
timestamp = compiler . getNextValue ( ) ;
2753
2753
}
2754
2754
return {
You can’t perform that action at this time.
0 commit comments