Daniel Gustaw

Results 200 comments of Daniel Gustaw

I have the same ``` export default new LocalizedStrings({ ^ TypeError: LocalizedStrings is not a constructor at (/home/daniel/pro/bookcars/api/src/config/app.config.ts:3:16) at ModuleJob.run (node:internal/modules/esm/module_job:194:25) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) ``` with code ``` import LocalizedStrings...

I found workaround ``` const LocalizedStringsConstructor: typeof LocalizedStrings = 'default' in LocalizedStrings ? LocalizedStrings.default as typeof LocalizedStrings : LocalizedStrings; export default new LocalizedStringsConstructor({ fr: { ERROR: 'Erreur interne : ',...

I migrated to https://csv.js.org/stringify/options/. Before ``` const csvWriter = createCsvWriter({ path: `${path}.csv`, header: [...data.headers], fieldDelimiter: ';', }); await csvWriter.writeRecords(data.items); ``` After ``` const records = [data.headers.map((h) => h.title), ...data.items.map((row) =>...

@janpio I have real case from app. User can have property, eg.: telegram_id but it it optional. On the other hand I would to see error if second user will...

@huv1k i see that this blocking task is closed now. But I can't find playground on snapcraft. What need to be done to send snaps that exists in releases on...

It is implemnted in `valibot` https://github.com/fabian-hiller/valibot/issues/18 commit: https://github.com/fabian-hiller/valibot/commit/37ac397666e2c8bc2529d98f50d861026fbacc93 interface: ``` abortPipeEarly?: boolean ```

https://github.com/jjwilly16/node-pdftk/issues/39

@jjwilly16 why this is not accepted?

Is there chance to update this package in future?

I really need this feature. I am working on ArrayBuffers. I will try to extend it but can't promise success.