Vincent Weevers

Results 54 issues of Vincent Weevers

It's been dead for a long time. It was used for the Google discussion recently, which made the channel seem active, and made me sign up for IRCCloud, but now...

discussion

See https://github.com/Level/abstract-leveldown/pull/353#discussion_r336780503. That PR changed the range tests to automatically test the inverse of options (in reverse mode), more akin to property-based testing. It made some handwritten `reverse=true` tests redundant.

test

**Context** I'm working on a rewrite of `level-ttl`, not because I need it, but to make it use hooks and find out what gaps we in that API. **Problem** If...

enhancement

This is a documentation-only PR, acting as an RFC. I opted for a token-based approach (as suggested by Rod Vagg in https://github.com/Level/community/issues/45) instead of a dedicated snapshot API surface (as...

- [x] https://github.com/Level/community/pull/109 - [x] `abstract-level` (replacement for `abstract-leveldown` and more) - [x] 1.0.0 - [x] `memory-level` (replacement for `memdown` and `level-mem`) - [x] Create repository - [x] Replace links...

Follow-up for https://github.com/Level/leveljs.org/issues/62. There are some links to update, and the introduction too.

documentation

It has very little downloads: ![image](https://user-images.githubusercontent.com/3055345/64471919-4d415d00-d157-11e9-9114-08cf8bc7d017.png)

discussion

See [`neostandard`](https://github.com/neostandard/neostandard) and [context](https://github.com/standard/standard/issues/1948). I'll have to get over my dislike of [dangling comma's](https://github.com/neostandard/neostandard#changed-rules) and I will, because the point of a code style is to avoid bikeshedding. That's the...

discussion
maintenance

As the synchronous equivalent of `db.get()`: ```js const value1 = await db.get('abc') const value2 = db.getSync('abc') ``` Good to have because it's much faster. It doesn't have the overhead of...