1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

Fix from code inspect: Use "not" instead of "!".

This commit is contained in:
Jason Walton 2013-03-01 11:19:22 -05:00
parent ea86e3e7b1
commit d626e70287

View file

@ -49,7 +49,7 @@ fragmentsToText = (fragments) ->
# Validates that `fragments` is an array of CodeFragment objects.
# If PARANOID is false, then this does nothing.
checkFragments = (fragments, node=null) ->
if !PARANOID then return fragments
if not PARANOID then return fragments
nodeName = if node then " from #{node.constructor.name}" else ""
if !fragments