mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 10:53:21 +02:00
12 lines
252 B
JavaScript
12 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)
|
|
}
|