![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/node_modules/resolve-url-loader/lib/ |
/* * MIT License http://opensource.org/licenses/MIT * Author: Ben Holloway @bholloway */ 'use strict'; /** * Prepend file:// protocol to source path string or source-map sources. */ function prepend(candidate) { if (typeof candidate === 'string') { return 'file://' + candidate; } else if (candidate && (typeof candidate === 'object') && Array.isArray(candidate.sources)) { return Object.assign({}, candidate, { sources: candidate.sources.map(prepend) }); } else { throw new Error('expected string|object'); } } exports.prepend = prepend; /** * Remove file:// protocol from source path string or source-map sources. */ function remove(candidate) { if (typeof candidate === 'string') { return candidate.replace(/^file:\/{2}/, ''); } else if (candidate && (typeof candidate === 'object') && Array.isArray(candidate.sources)) { return Object.assign({}, candidate, { sources: candidate.sources.map(remove) }); } else { throw new Error('expected string|object'); } } exports.remove = remove;