Skip to content

Commit 36f3f31

Browse files
refactor: remove third parameter
2 parents 03d58c9 + 874b75b commit 36f3f31

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)