saehm / DruidJS

A JavaScript Library for Dimensionality Reduction
111 stars 9 forks source link

static properties are TC39 #8

Closed Fil closed 3 years ago

Fil commented 3 years ago

static parameter_list = []; breaks on Safari

See https://github.com/tc39/proposal-static-class-features

We can either wait for Safari to catch up, or use normal properties instead.

saehm commented 3 years ago

This line doesn't do much. I will replace it with a getter and a setter, then it should work.

saehm commented 3 years ago

Sorry, now with 0.3.4, it should work. I tested it with the webkit browser epiphany, since i don't get Safari to run on Linux.

Fil commented 3 years ago

perfect !