platform/packages/inflection3/lib/src/is_tense.dart

7 lines
187 B
Dart
Raw Normal View History

2021-05-17 14:50:37 +00:00
import '../inflection3.dart';
2021-05-02 08:39:25 +00:00
/// returns true if this word is in the past tense
bool isPastTense(String word) {
return word.toLowerCase().trim() == past(word).toLowerCase().trim();
}