Validators API equals(str, comparison) - 文字列一致チェック contains(str, seed) - 文字列インクルードチェック matches(str, pattern [, modifiers]) - 文字列patternマッチチェック、例:matches('foo', /foo/i)或はmatches('foo', 'foo', 'i') isEmail(str) - email書式チェック isURL(str [, options]) - url書式チェック、optionsは{ protocols: [‘http’,’https’,’ftp’], require_tld: true, require_protocol: false }というオブジェクトです。 isIP(str [, version]) - ipaddress書式チェック、

