Files
stf/lib/util/pathutil.js
2014-01-29 00:13:29 +09:00

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)
}