Last active
August 29, 2015 14:03
-
-
Save sizovs/336c08ce65b8ab6597f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def timeCame(String date) { | |
def today = new Date() | |
def expirationDate = new Date().parse('dd/MM/yyyy', date) | |
today.after expirationDate | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment