Frank Lemanschik

Results 110 comments of Frank Lemanschik

@jcubic close this Closed by: - [ ] #2216

@jcubic ```js export class BaseError extends Error { /** * @param {string} message * @param {object} [options] * @param {string} [options.code] - A machine-readable error code. * @param {*} [options.data]...

see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error/cause ```js function makeRSA(p, q) { if (!Number.isInteger(p) || !Number.isInteger(q)) { throw new Error("RSA key generation requires integer inputs.", { cause: { code: "NonInteger", values: [p, q] }, });...

@AbhinavPundir18 look into my suggestions apply it test it then we can merge it

i can do so but i would love if some one else runs the tests as i still did not invest into that i hate the CI flow in this...

most best would be that we find some one who is really patient and simple try's to land some patches over the next year. We need a lead maintainer who...

dublicate https://github.com/isomorphic-git/isomorphic-git/issues/2140

@jcubic close this Closed by - [ ] #2216

i will create a fix for that a fast and good one while i would prefer to even drop the exports property complet in favor of letting the consumer use...

@jcubic what do you think can we not remove the exports field complet and do not depend on that feature? I mean NodeJS will always be happy with CJS or...