Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Revert template literal to plain string for IE11 support (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopotarantino authored and TooTallNate committed Feb 14, 2018
1 parent 35b49da commit f5fcafd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Agent.prototype.addRequest = function addRequest(req, _opts) {
req.onSocket(socket);
} else {
const err = new Error(
`no Duplex stream was returned to agent-base for \`${req.method} ${req.path}\``
'no Duplex stream was returned to agent-base for `' + req.method + ' ' + req.path + '`'
);
onerror(err);
}
Expand Down

0 comments on commit f5fcafd

Please sign in to comment.