Open bryab opened 6 years ago
Extendscript allows you to multiply an array of numbers by a scalar. Typescript doesn't allow this.
var v = [0,.5,1] * 255; v == [0,127.5, 255];
I know this isn't really a solvable issue, but thought I'd share it. Extendscript is certainly a strange edge case for Typescript.
ok
open pr
Extendscript allows you to multiply an array of numbers by a scalar. Typescript doesn't allow this.