Created
June 25, 2014 01:47
-
-
Save ginpei/54fc8da4f18a10eaa2a7 to your computer and use it in GitHub Desktop.
Big Brother is watching you
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
| var rx = /^ビッグブラザー[はが]あなたを(見て|見守って)いる$/; | |
| _.all([ | |
| 'ビッグブラザーはあなたを見ている', | |
| 'ビッグブラザーがあなたを見ている', | |
| 'ビッグブラザーはあなたを見守っている', | |
| 'ビッグブラザーがあなたを見守っている', | |
| ], function(text, index) { | |
| return rx.test(text); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment