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

17 lines
331 B
JavaScript
Raw Normal View History

2024-02-09 00:38:41 +00:00
'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