math-practice-pkg
Advanced tools
Comparing version 0.4.0 to 0.5.0
# math-practice-pkg | ||
## 0.5.0 | ||
### Minor Changes | ||
- 7500847: add extra 420 | ||
## 0.4.0 | ||
@@ -4,0 +10,0 @@ |
// src/index.ts | ||
function add(a, b) { | ||
return a + b + 12; | ||
return a + b + 420; | ||
} | ||
@@ -5,0 +5,0 @@ export { |
{ | ||
"name": "math-practice-pkg", | ||
"version": "0.4.0", | ||
"version": "0.5.0", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.cjs", |
function add(a: number, b: number) { | ||
return a + b + 12; | ||
return a + b + 420; | ||
} | ||
export { add }; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2639