6 lines
187 B
Dart
6 lines
187 B
Dart
import '../inflection3.dart';
|
|
|
|
/// returns true if this word is in the past tense
|
|
bool isPastTense(String word) {
|
|
return word.toLowerCase().trim() == past(word).toLowerCase().trim();
|
|
}
|