Skip to content

Commit

Permalink
Merge 9712031 into 982c12c
Browse files Browse the repository at this point in the history
  • Loading branch information
swimyoung committed Jan 7, 2019
2 parents 982c12c + 9712031 commit 20ccd65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/browser.js
Expand Up @@ -153,7 +153,7 @@ function formatArgs(args) {
// figure out the correct index to insert the CSS into
let index = 0;
let lastC = 0;
args[0].replace(/%[a-zA-Z%]/g, match => {
args[0].replace(/%[a-zA-Z%]/g, function (match) {
if (match === '%%') {
return;
}
Expand All @@ -176,7 +176,7 @@ function formatArgs(args) {
*
* @api public
*/
exports.log = console.debug || console.log || (() => {});
exports.log = console.debug || console.log || (function () {});

/**
* Save `namespaces`.
Expand Down

0 comments on commit 20ccd65

Please sign in to comment.