mirror of
https://github.com/openstf/stf
synced 2025-10-04 02:09:32 +02:00
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
var path = require('path')
|
|
|
|
// Export
|
|
module.exports.root = function(target) {
|
|
return path.resolve(__dirname, '../..', target)
|
|
}
|
|
|
|
// Export
|
|
module.exports.resource = function(target) {
|
|
return path.resolve(__dirname, '../../res', target)
|
|
}
|
|
|
|
// Export
|
|
module.exports.vendor = function(target) {
|
|
return path.resolve(__dirname, '../../vendor', target)
|
|
}
|