NET-Web-API-w-Angular/my-app/node_modules/karma/lib/utils/path-utils.js

16 lines
331 B
JavaScript
Executable file

'use strict'
const path = require('path')
const PathUtils = {
formatPathMapping (path, line, column) {
return path + (line ? `:${line}` : '') + (column ? `:${column}` : '')
},
calculateAbsolutePath (karmaRelativePath) {
return path.join(__dirname, '..', '..', karmaRelativePath)
}
}
module.exports = PathUtils