relative_url.js 137 B

1234567
  1. 'use strict';
  2. const { relative_url } = require('hexo-util');
  3. module.exports = function(from, to) {
  4. return relative_url(from, to);
  5. };