(p)
| 103 | } |
| 104 | |
| 105 | function pathInRoot(p) { |
| 106 | if (!process.env.BROWSERSLIST_ROOT_PATH) return true |
| 107 | var rootPath = path.resolve(process.env.BROWSERSLIST_ROOT_PATH) |
| 108 | if (path.relative(rootPath, p).substring(0, 2) === '..') { |
| 109 | return false |
| 110 | } |
| 111 | return true |
| 112 | } |
| 113 | |
| 114 | function check(section) { |
| 115 | if (Array.isArray(section)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…