Skip to content

Commit 874b75b

Browse files
Remove third parameter
1 parent acecba2 commit 874b75b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/transform.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function transformValue(value, options, result, item) {
2121

2222
// reduce AST to its simplest form, that is, either to a single value
2323
// or a simplified calc expression
24-
const reducedAst = reducer(ast, options.precision, item);
24+
const reducedAst = reducer(ast, options.precision);
2525

2626
// stringify AST and write it back
2727
node.type = 'word';

0 commit comments

Comments
 (0)