Compare commits

..

No commits in common. 'd4c096b07ade20e89d6c4f965309519a35f76da2' and '77d1b141806ae0acdb96afcac118f253d34f4997' have entirely different histories.

  1. 5
      CHANGELOG.md
  2. 2
      index.d.ts
  3. 1
      lib/byline.js

@ -6,11 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- Explicitly import `buffer` [#34](https://github.com/seald/nedb/pull/34).
- Fix `Cursor`'s typings [#45](https://github.com/seald/nedb/issues/45)
## [4.0.3] - 2023-12-13
### Fixed
- Fixed EPERM Exception when datastore is at the root of a disk on Windows [#48](https://github.com/seald/nedb/issues/48)

2
index.d.ts vendored

@ -149,7 +149,7 @@ declare class Nedb<Schema = Record<string, any>> extends EventEmitter {
}
declare namespace Nedb {
interface Cursor<T> extends Promise<Document<T>> {
interface Cursor<T> extends Promise<T> {
sort(query: any): Cursor<T>;
skip(n: number): Cursor<T>;
limit(n: number): Cursor<T>;

@ -25,7 +25,6 @@
*/
const stream = require('stream')
const timers = require('timers')
const { Buffer } = require('buffer')
const createLineStream = (readStream, options) => {
if (!readStream) throw new Error('expected readStream')

Loading…
Cancel
Save