I was looking at the Nest.Js source code and i found an interesting snippet.
const uuid_1 = require("uuid");
const randomStringGenerator = () => (0, uuid_1.v4)();
I was wondering, what is the point of the 0 in the grouping operator?
I was looking at the Nest.Js source code and i found an interesting snippet.
const uuid_1 = require("uuid");
const randomStringGenerator = () => (0, uuid_1.v4)();
I was wondering, what is the point of the 0 in the grouping operator?