Skip to content

Commit 20bdded

Browse files
committed
fix(calculator.ts): return this from asin method
1 parent 71360a4 commit 20bdded

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Calculator.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,5 +94,6 @@ export default class Calculator {
9494

9595
public asin() {
9696
this.current = Math.asin(this.current);
97+
return this;
9798
}
9899
}

0 commit comments

Comments
 (0)