(option)
| 456 | } |
| 457 | |
| 458 | function nodeOptionIsEvalMode(option) { |
| 459 | var name = String(option || '').split('=')[0]; |
| 460 | return name === '-e' || name === '--eval' || |
| 461 | name === '-p' || name === '--print' || |
| 462 | name === '-c' || name === '--check'; |
| 463 | } |
| 464 | |
| 465 | function getNodeScriptToken(tokens) { |
| 466 | for (var i = 0; i < tokens.length; i++) { |
no outgoing calls
no test coverage detected