UNPKG
plain-tag
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
0.0.0
A noop/plain JS template literal tag
github.com/WebReflection/plain-tag
WebReflection/plain-tag
plain-tag
/
index.js
17 lines
(11 loc)
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
self.
noopTag
= (
function
(
exports
) {
'use strict'
;
function
index
(
t
) {
for
(
var
s = t[
0
], i =
1
, l =
arguments
.
length
; i < l; i++) { s +=
arguments
[i] + t[i]; }
return
s; }
exports
.
default
= index;
return
exports
; }({}).
default
);