codelyzer
Version:
Linting for Angular applications, following angular.io/styleguide.
17 lines (16 loc) • 467 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PathResolver = void 0;
var path_1 = require("path");
var PathResolver = (function () {
function PathResolver() {
}
PathResolver.prototype.resolve = function (path, relative) {
if (typeof path !== 'string') {
return null;
}
return path_1.join(relative, path);
};
return PathResolver;
}());
exports.PathResolver = PathResolver;