選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

10 行
136 B

  1. module.exports = not
  2. function not(f) {
  3. return negation
  4. function negation() {
  5. return !f.apply(this, arguments)
  6. }
  7. }