(opt)
| 69 | } |
| 70 | |
| 71 | function booleanOrFunctionParser(opt) { |
| 72 | if (typeof opt === 'function') { |
| 73 | return opt; |
| 74 | } |
| 75 | return booleanParser(opt); |
| 76 | } |
| 77 | |
| 78 | function nullParser(opt) { |
| 79 | if (opt == 'null') { |
nothing calls this directly
no test coverage detected
searching dependent graphs…