UNPKG

web-themer

Version:

Customizable theme generator for web applications.

12 lines (9 loc) 291 B
'use strict'; const path = require('path'); module.exports = function(from, to) { let relativePath = path.relative(from, to).replace(/\\/g, '/'); if (relativePath && relativePath[0] !== '.') { relativePath = './' + relativePath; } return relativePath; }