Files
control-pane/public/novnc/node_modules/karma/lib/utils/pattern-utils.js
Charlie Root 58f2e80eb5 update
2022-07-31 09:56:11 +00:00

15 lines
376 B
JavaScript

'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