()
| 1375 | var hasRequiredBrowser; |
| 1376 | |
| 1377 | function requireBrowser () { |
| 1378 | if (hasRequiredBrowser) return browser.exports; |
| 1379 | hasRequiredBrowser = 1; |
| 1380 | (function (module, exports) { |
| 1381 | /** |
| 1382 | * This is the web browser implementation of `debug()`. |
| 1383 | */ |
| 1384 | |
| 1385 | exports.formatArgs = formatArgs; |
| 1386 | exports.save = save; |
| 1387 | exports.load = load; |
| 1388 | exports.useColors = useColors; |
| 1389 | exports.storage = localstorage(); |
| 1390 | exports.destroy = (() => { |
| 1391 | let warned = false; |
| 1392 | |
| 1393 | return () => { |
| 1394 | if (!warned) { |
| 1395 | warned = true; |
| 1396 | console.warn('Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.'); |
| 1397 | } |
| 1398 | }; |
| 1399 | })(); |
| 1400 | |
| 1401 | /** |
| 1402 | * Colors. |
| 1403 | */ |
| 1404 | |
| 1405 | exports.colors = [ |
| 1406 | '#0000CC', |
| 1407 | '#0000FF', |
| 1408 | '#0033CC', |
| 1409 | '#0033FF', |
| 1410 | '#0066CC', |
| 1411 | '#0066FF', |
| 1412 | '#0099CC', |
| 1413 | '#0099FF', |
| 1414 | '#00CC00', |
| 1415 | '#00CC33', |
| 1416 | '#00CC66', |
| 1417 | '#00CC99', |
| 1418 | '#00CCCC', |
| 1419 | '#00CCFF', |
| 1420 | '#3300CC', |
| 1421 | '#3300FF', |
| 1422 | '#3333CC', |
| 1423 | '#3333FF', |
| 1424 | '#3366CC', |
| 1425 | '#3366FF', |
| 1426 | '#3399CC', |
| 1427 | '#3399FF', |
| 1428 | '#33CC00', |
| 1429 | '#33CC33', |
| 1430 | '#33CC66', |
| 1431 | '#33CC99', |
| 1432 | '#33CCCC', |
| 1433 | '#33CCFF', |
| 1434 | '#6600CC', |
no test coverage detected