Skip to content

Commit

Permalink
🔢 Remove commas from result
Browse files Browse the repository at this point in the history
  • Loading branch information
ziulev committed Feb 24, 2021
1 parent 9441af1 commit 5f721bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/calculator/calculator.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class CalculatorPlugin extends SpotterPlugin implements SpotterPluginLife
}

try {
const result = evaluate(normalizedQuery).toLocaleString();
const result = evaluate(normalizedQuery);

if (!result) {
return [];
Expand Down

0 comments on commit 5f721bc

Please sign in to comment.