UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

14 lines (10 loc) 353 B
"use strict"; var path = require("path"); module.exports = function relative(sourceRoot, filename) { var rootPath = sourceRoot.replace(/\\/g, "/").split("/")[1]; var fileRootPath = filename.replace(/\\/g, "/").split("/")[1]; if (rootPath && rootPath !== fileRootPath) { return filename; } return path.relative(sourceRoot, filename); };