Skip to content

Commit 6a7aae1

Browse files
committed
Remove console.log
1 parent c032549 commit 6a7aae1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/expression/definitions/interpolate.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,7 @@ class Interpolate implements Expression {
126126
if (stops.length && stops[stops.length - 1][0] >= label) {
127127
return context.error('Input/output pairs for "interpolate" expressions must be arranged with input values in strictly ascending order.', labelKey) as null;
128128
}
129-
console.log("parsing", value, valueKey, outputType);
130129
const parsed = context.parse(value, valueKey, outputType);
131-
//console.log(parsed, value, valueKey, outputType);
132130
if (!parsed) return null;
133131
outputType = outputType || parsed.type;
134132
stops.push([label, parsed]);

0 commit comments

Comments
 (0)