NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/resolve-url-loader/lib/sources-absolute-to-relative.js

20 lines
545 B
JavaScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
/*
* MIT License http://opensource.org/licenses/MIT
* Author: Ben Holloway @bholloway
*/
'use strict';
var path = require('path');
/**
* Convert the given array of absolute URIs to relative URIs (in place).
* @param {Array} sources The source map sources array
* @param {string} basePath The base path to make relative to
*/
module.exports = function sourcesAbsoluteToRelative(sources, basePath) {
sources.forEach(sourceToRelative);
function sourceToRelative(value, i, array) {
array[i] = path.relative(basePath, value);
}
};