Skip to content

Commit

Permalink
Patch Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ArjunAtlast committed Jun 12, 2018
1 parent d59c31e commit 895f21a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ds/matrices/square-matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class SquareMatrix extends NumberMatrix {
/**
* Return the inverse of this matrix if any. If not it returns null.
*/
inverse():this {
inverse():this|null {
let det = this.determinant();
if(det === 0) return null;
else {
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"target": "es6",
"module": "commonjs",
"declaration": true,
"outDir": "./dist"
"outDir": "./dist",
"strict": true
}
}

0 comments on commit 895f21a

Please sign in to comment.