Skip to content

Instantly share code, notes, and snippets.

@Tenderfeel
Created July 28, 2017 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tenderfeel/4899c1dcb0bcce62fa36bed2334a0573 to your computer and use it in GitHub Desktop.
Save Tenderfeel/4899c1dcb0bcce62fa36bed2334a0573 to your computer and use it in GitHub Desktop.
RFC 3339日付チェック
//日時チェック(RFC 3339形式)
//@param value {string} datetime-local.value
function checkDatetime(value) {
return(!/20[0-9]{2}-[0-1][0-9]-[0-3][0-9]T[0-2][0-9]:[0-5][0-9]/.test(value));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment