mirror of https://github.com/webpack/webpack.git
4 lines
98 B
JavaScript
4 lines
98 B
JavaScript
|
var add = require('./math').add;
|
||
|
exports.increment = function(val) {
|
||
|
return add(val, 1);
|
||
|
};
|