UNPKG
buble-jsx-only
Version:
latest (0.21.0)
0.21.0
0.20.0
0.19.8
Bublé, but just JSX.
github.com/bublejs/buble
vizhub-open-core/buble-jsx-only
buble-jsx-only
/
src
/
program
/
types
/
JSXSpreadAttribute.js
11 lines
(8 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
Node
from
'../Node.js'
;
export
default
class
JSXSpreadAttribute
extends
Node
{
transpile
(
code, transforms
) { code.
remove
(
this
.
start
,
this
.
argument
.
start
); code.
remove
(
this
.
argument
.
end
,
this
.
end
);
super
.
transpile
(code, transforms); } }