dumpling 0.1.0

A fast JavaScript runtime and bundler in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
function add(a, b) {
  return a + b;
}

function multiply(a, b) {
  return a * b;
}

module.exports = {
  add,
  multiply,
  version: "1.0.0",
};