math-practice-pkg
Advanced tools
Comparing version 0.1.2 to 0.2.0
@@ -1,13 +0,8 @@ | ||
# math | ||
# math-practice-pkg | ||
## 0.1.2 | ||
## 0.2.0 | ||
### Patch Changes | ||
### Minor Changes | ||
- fix add | ||
## 0.1.1 | ||
### Patch Changes | ||
- Math 11 instead of 10 | ||
- 453d51d: add extra 5 to add | ||
- ac80081: use different increment |
// src/index.ts | ||
function add(a, b) { | ||
return a + b; | ||
return a + b + 6; | ||
} | ||
@@ -5,0 +5,0 @@ export { |
{ | ||
"name": "math-practice-pkg", | ||
"version": "0.1.2", | ||
"version": "0.2.0", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.cjs", |
function add(a: number, b: number) { | ||
return a + b; | ||
return a + b + 6; | ||
} | ||
export { add }; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2482