-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
g.satoh
committed
Jul 12, 2017
1 parent
e4df26a
commit c9e162b
Showing
4 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import _ from 'lodash'; | ||
|
||
export default function _containsMark(str) { | ||
const spChars = "!@#$%^&*\\\'\"?".split(""); | ||
return !_.isEmpty(_.intersection(spChars, str.split(''))); | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import _ from 'lodash'; | ||
|
||
export default function _containsSpecialChar(str) { | ||
const spChars = "!@#$%^&*\\\';,./{}|\":?".split(""); | ||
const spChars = "!@#$%^&*()+=-[]\\\';,./{}|\":<>?".split(""); | ||
return !_.isEmpty(_.intersection(spChars, str.split(''))); | ||
} |
This file contains 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