Vadims Daleckis
Vadims Daleckis
All operating systems provide a mechanism to store and read [*Extended file attributes*](https://en.wikipedia.org/wiki/Extended_file_attributes), provide an API to read/write/delete file attributes. The attributes can store metadata such as the unique file...
Add tests for `concurrency(limit)` method in `src/__tests__/concurrency.spec.ts`. Fix issues.
``` FAIL packages/json-type/src/codegen/binary/json/__tests__/automated.spec.ts (11.808 s) ● can encode and decode Configuration expect(received).toEqual(expected) // deep equality - Expected - 1 + Received + 1 @@ -1,10 +1,10 @@ Object { "database":...
- [x] General setup - [ ] Setup individual packages - [x] `buffers` - [x] `codegen` - [x] `util` - [x] `json-pack` - [ ] Split `json-pack` into - [...
- [ ] Ability to set metadata interface through static instantiation methods. - [x] Ability to change `sid` of the whole `Log` (start model and end model). - [x] Ability...
Add ability to specify recursive types using a function wrapper ```ts import {s} from 'json-joy/lib/json-crdt-patch'; const User = s.obj({ id: s.con(''), name: s.str(''), }, // Second object are optional fields...
Deno file system events: ```ts /** * Represents a unique file system event yielded by a * {@linkcode Deno.FsWatcher}. * * @category File System */ export interface FsEvent { /**...
In `src/core/` there is `Node` class which is like a virtual file i-node, however it is used for, both, files and folders. Separate it into `FileNode` and `DirNode` for files...