File: //home/cursos.ril.es/node_modules/laravel-elixir/node_modules/insert-css/example/bundle.js
;(function(e,t,n,r){function i(r){if(!n[r]){if(!t[r]){if(e)return e(r);throw new Error("Cannot find module '"+r+"'")}var s=n[r]={exports:{}};t[r][0](function(e){var n=t[r][1][e];return i(n?n:e)},s,s.exports)}return n[r].exports}for(var s=0;s<r.length;s++)i(r[s]);return i})(typeof require!=="undefined"&&require,{1:[function(require,module,exports){
var fs = require('fs');
var insertCss = require('../');
var css = "body {\n background-color: purple;\n color: yellow;\n}\n";
insertCss(css);
document.body.appendChild(document.createTextNode('HELLO CRUEL WORLD'));
},{"fs":2,"../":3}],3:[function(require,module,exports){
var inserted = [];
module.exports = function (css) {
if (inserted.indexOf(css) >= 0) return;
inserted.push(css);
var elem = document.createElement('style');
var text = document.createTextNode(css);
elem.appendChild(text);
if (document.head.childNodes.length) {
document.head.insertBefore(elem, document.head.childNodes[0]);
}
else {
document.head.appendChild(elem);
}
};
},{}],2:[function(require,module,exports){
// nothing to see here... no file methods for the browser
},{}]},{},[1])
;