I was thinking about if coffeescript had a way to make multiple imports, like:
import (
"one"
"two"
"three"
"four"
) as (
@one
two
{ three }
);
which could translate to:
import * as one from "one"
import two from "two"
import { three } from "three"
import "four"
You can also:
which will be:
import "one"
import "two"
now i don't know if this is any better than the normal imports, but it removes the duplicate import statements atleast...
I was thinking about if coffeescript had a way to make multiple imports, like:
which could translate to:
You can also:
which will be:
now i don't know if this is any better than the normal imports, but it removes the duplicate
importstatements atleast...