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