We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31339ba commit 4d93d7cCopy full SHA for 4d93d7c
lib-es5/utils/index.js
@@ -567,6 +567,12 @@ function generate_transformation_string(options) {
567
options.start_offset = _split_range2[0];
568
options.end_offset = _split_range2[1];
569
}
570
+ if (options.start_offset) {
571
+ options.start_offset = normalize_expression(options.start_offset);
572
+ }
573
+ if (options.end_offset) {
574
+ options.end_offset = normalize_expression(options.end_offset);
575
576
var overlay = process_layer(consumeOption(options, "overlay"));
577
var radius = process_radius(consumeOption(options, "radius"));
578
var underlay = process_layer(consumeOption(options, "underlay"));
0 commit comments