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 6cb701b commit f8a6058Copy full SHA for f8a6058
lib/Template.js
@@ -1,5 +1,3 @@
1
-/* eslint no-unused-vars: "off" */
2
-
3
try {
4
module.exports = require('./es6/Template');
5
} catch (ignored) {
@@ -15,6 +13,7 @@ try {
15
13
// calledAsTemplateTagQuick unless that function has
16
14
// returned true.
17
+ // eslint-disable-next-line no-unused-vars
18
module.exports = function (sqlStrings) {
19
// This might be reached if client code is transpiled down to
20
// ES5 but this module is not.
@@ -26,6 +25,7 @@ try {
26
25
*
27
* @return {boolean} always false in ES<6 compatibility mode.
28
*/
29
module.exports.calledAsTemplateTagQuick = function (firstArg, nArgs) {
30
return false;
31
};
0 commit comments