We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d3d388 commit 2059d20Copy full SHA for 2059d20
src/messagetags.js
@@ -1,3 +1,5 @@
1
+'use strict';
2
+
3
module.exports.decodeValue = decodeValue;
4
module.exports.encodeValue = encodeValue;
5
module.exports.decode = decode;
@@ -63,7 +65,7 @@ function encode(tags) {
63
65
return key;
64
66
}
67
- return `${key}=${encodeValue(val.toString())}`;
68
+ return key + '=' + encodeValue(val.toString());
69
});
70
71
return parts.join(';');
0 commit comments