Daniel Shmuglin
Daniel Shmuglin
Meanwhile we're preparing some sanity & stress test, to see there's no messages lost, including on those errors, which currently cause node process to restart (via node cluster).
Great, will wait for the fix. Thanks a lot Oleksiy! Great package (so far the best for node out there i could find) add the attitude!
Awesome, will upgrade tomorrow. Thanks a lot
@oleksiyk UPD: no more errors in my case. 10x!
@timostamm thanks for your reply. The runtime magic is an option indeed, however the devex isn't great (IDE support and compilation errors are cryptic). Thus I prefer to do a...
reproduced by the following test (once run with haste): ``` import * as fs from 'fs'; describe.only('monkey patched Date/fs?', () => { it('instanceof Date', () => { console.log(fs.statSync.toString()) const stat...
@dcodeIO Any chance for merge?
David, thanks for your reply. in that case maybe it is possible for `createWrappedNode` to accept additional argument (maybe `project?: Project`) and return a first-class instance of `Node`?
`typeCast` does the job for retrieval, however is there any trick for inserts, especially `SET ?` syntax? assuming I have: ``` CREATE TABLE `pets` ( `id` CHAR(36) NOT NULL, `json`...
another related issue is that custom checker function & missing property cause the property to appear on validated object: ``` const schema = { field: {type: 'string', optional: true, custom(value,...