noname
noname
> Isn't the return type something like `[number, number, number, string]`? Or does the `offset` arg break that? This code is not easy to typed because of `offset`.
I solved the conflict and modified the `any[]` to `Array`
Are we supposed to load only the packages that the user wants to use `require`?
I got it. I'll try
I tested it and it seems that it is already possible to reduce the size of the package size. ## Import from "js-sdsl"  ## import from "js-sdsl/dist/cjs/container/SequentialContainer/Vector"  You...
In order to reduce the build result, the source must be analyzed and unnecessary sources must be excluded through the bundler. In this case, some degree of tree shaking should...
> Yes, one of the way is to publish independent package. > > But this is a bit troublesome because I didn't think about it when I first wrote. >...
I'll create a build solution for this
> > The problem here is that each container has a dependency on each other. Publishing multiple containers separately increases the number of duplicate codes between each package. So I...
> > If library A uses js-sdsl/ordered-map and library B uses js-sdsl/ordered-set, code duplication cannot be avoided for projects using those two libraries > > Is there anything wrong with...