(dependency)
| 546 | } |
| 547 | |
| 548 | function stripOptionalNotation (dependency) { |
| 549 | return dependency && dependency[0] === '?' |
| 550 | ? dependency.slice(1) |
| 551 | : dependency |
| 552 | } |
| 553 | |
| 554 | // function will check if a directory exists, and create it if it doesn't |
| 555 | // https://blog.raananweber.com/2015/12/15/check-if-a-directory-exists-in-node-js/ |
no outgoing calls
no test coverage detected
searching dependent graphs…