blob: 5921473e942df4dc8ad00c47341c552fc6171e13 [file] [log] [blame]
'use strict'
const path = require('path')
const PatternUtils = {
getBaseDir (pattern) {
return pattern
.replace(/[/\\][^/\\]*\*.*$/, '') // remove parts with *
.replace(/[/\\][^/\\]*[!+]\(.*$/, '') // remove parts with !(...) and +(...)
.replace(/[/\\][^/\\]*\)\?.*$/, '') || path.sep // remove parts with (...)?
}
}
module.exports = PatternUtils