(base,p)
| 279 | } |
| 280 | |
| 281 | function prefixPath(base,p) { |
| 282 | base = base.replace(/^\//,''); |
| 283 | if (p === '*') { |
| 284 | return base; |
| 285 | } |
| 286 | p = p.replace(/\/\*$/,''); |
| 287 | return path.join(base,p); |
| 288 | } |
| 289 | |
| 290 | function entries(from, dirType) { |
| 291 | if (from == null) { |