This website works better with JavaScript.
Home
Explore
Help
Sign In
lukechilds
/
rollup
mirror of
https://github.com/lukechilds/rollup.git
Watch
1
Star
0
Fork
0
Code
Issues
Projects
Releases
Wiki
Activity
1672
Commits
21
Branches
151
Tags
2.6 MiB
Tree:
bc732659c7
rollup
/
test
/
function
/
es5-class-called-without-new
/
foo.js
8 lines
95 B
Raw
Normal View
History
Removes `new Foo(...)` when Foo is a pure function
9 years ago
export
function
Foo
(
x
)
{
this
.
value
=
x
;
}
export
function
Bar
(
x
)
{
this
.
value
=
x
;
}