marko/compiler/util/resolve-browser.js

5 lines
117 B
JavaScript

var nodePath = require('path');
module.exports = function(target, from) {
return nodePath.join(from, target);
};