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