resolve-url-loader
Version:
Webpack loader that resolves relative paths in url() statements based on the original source file
27 lines (21 loc) • 743 B
JavaScript
/*
* MIT License http://opensource.org/licenses/MIT
* Author: Ben Holloway @bholloway
*/
;
var stream = require('stream');
var maybeStream = process[process.env.RESOLVE_URL_LOADER_TEST_HARNESS];
function logToTestHarness(options) {
if (!!maybeStream && (typeof maybeStream === 'object') && (maybeStream instanceof stream.Writable)) {
Object.keys(options).map(eachOptionKey);
maybeStream = null; // ensure we log only once
}
function eachOptionKey(key) {
var value = options[key];
var text = (typeof value === 'undefined') ?
String(value) :
(JSON.stringify(value.valueOf()) || '-unstringifyable-');
maybeStream.write(key + ': ' + text + '\n');
}
}
module.exports = logToTestHarness;