This website requires JavaScript.
Explore
Help
Sign In
root
/
webpack
mirror of
https://github.com/webpack/webpack.git
Watch
1
Star
0
Fork
You've already forked webpack
0
Code
Issues
Actions
1
Packages
Projects
Releases
Wiki
Activity
83090d2189
webpack
/
examples
/
commonjs
/
increment.js
5 lines
98 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Update increment.js
2018-07-29 21:10:19 +08:00
const
add
=
require
(
'./math'
)
.
add
;
Fix CRLF
2012-05-23 16:46:37 +08:00
exports
.
increment
=
function
(
val
)
{
return
add
(
val
,
1
)
;
Update increment.js
2018-07-29 21:10:19 +08:00
}
;