style-loader = function () {}
n/a
pitch = function (remainingRequest) { if(this.cacheable) this.cacheable(); var query = loaderUtils.getOptions(this) || {}; return [ "// style-loader: Adds some css to the DOM by adding a <style> tag", "", "// load the styles", "var content = require(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + ");", "if(typeof content === 'string') content = [[module.id, content, '']];", "// add the styles to the DOM", "var update = require(" + loaderUtils.stringifyRequest(this, "!" + path.join(__dirname, "addStyles.js")) + ")(content, " + JSON .stringify(query) + ");", "if(content.locals) module.exports = content.locals;", "// Hot Module Replacement", "if(module.hot) {", " // When the styles change, update the <style> tags", " if(!content.locals) {", " module.hot.accept(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + ", function() {", " var newContent = require(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + ");", " if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];", " update(newContent);", " });", " }", " // When the module is disposed, remove the <style> tags", " module.hot.dispose(function() { update(); });", "}" ].join("\n"); }
n/a
url = function () {}
n/a
useable = function () {}
n/a
url = function () {}
n/a
pitch = function (remainingRequest) { this.cacheable && this.cacheable(); var query = loaderUtils.getOptions(this) || {}; return [ "// style-loader: Adds some reference to a css file to the DOM by adding a <link> tag", "var update = require(" + JSON.stringify("!" + path.join(__dirname, "addStyleUrl.js")) + ")(", "\trequire(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + ")", ", " + JSON.stringify(query) + ");", "// Hot Module Replacement", "if(module.hot) {", "\tmodule.hot.accept(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + ", function() {", "\t\tupdate(require(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + "));", "\t});", "\tmodule.hot.dispose(function() { update(); });", "}" ].join("\n"); }
n/a
useable = function () {}
n/a
pitch = function (remainingRequest) { if(this.cacheable) this.cacheable(); var query = loaderUtils.getOptions(this) || {}; return [ "var refs = 0;", "var dispose;", "var content = require(" + loaderUtils.stringifyRequest(this, "!!" + remainingRequest) + ");", "if(typeof content === 'string') content = [[module.id, content, '']];", "if(content.locals) exports.locals = content.locals;", "exports.use = exports.ref = function() {", " if(!(refs++)) {", " dispose = require(" + loaderUtils.stringifyRequest(this, "!" + path.join(__dirname, "addStyles.js")) + ")(content, " + JSON .stringify(query) + ");", " }", " return exports;", "};", "exports.unuse = exports.unref = function() {", " if(refs > 0 && !(--refs)) {", " dispose();", " dispose = null;", " }", "};", "if(module.hot) {", " var lastRefs = module.hot.data && module.hot.data.refs || 0;", " if(lastRefs) {", " exports.ref();", " if(!content.locals) {", " refs = lastRefs;", " }", " }", " if(!content.locals) {", " module.hot.accept();", " }", " module.hot.dispose(function(data) {", " data.refs = content.locals ? 0 : refs;", " if(dispose) {", " dispose();", " }", " });", "}" ].join("\n"); }
n/a