Aladdin Mhemed

Results 3 comments of Aladdin Mhemed
trafficstars

Hi, I used ducksoupdev/[email protected] and it is successfully work, but css stopped to reload properly, it reloads, but it brings the old css instead of the new one, what can...

Look at implementation of list from https://mostly-adequate.gitbooks.io/mostly-adequate-guide/appendix_b.html#list ``` class List { constructor(xs) { this.$value = xs; } // ----- Pointed List static of(x) { return new List([x]); } // -----...