bfj 9.0.0 → 9.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitlab-ci.yml +4 -0
- package/HISTORY.md +7 -0
- package/README.md +0 -11
- package/package.json +1 -1
package/.gitlab-ci.yml
CHANGED
package/HISTORY.md
CHANGED
package/README.md
CHANGED
|
@@ -25,7 +25,6 @@ Big-Friendly JSON. Asynchronous streaming functions for large JSON data sets.
|
|
|
25
25
|
* [Options for serialisation functions](#options-for-serialisation-functions)
|
|
26
26
|
* [Is it possible to pause parsing or serialisation from calling code?](#is-it-possible-to-pause-parsing-or-serialisation-from-calling-code)
|
|
27
27
|
* [Can it handle newline-delimited JSON (NDJSON)?](#can-it-handle-newline-delimited-json-ndjson)
|
|
28
|
-
* [Can I specify a different promise implementation?](#can-i-specify-a-different-promise-implementation)
|
|
29
28
|
* [Is there a change log?](#is-there-a-change-log)
|
|
30
29
|
* [How do I set up the dev environment?](#how-do-i-set-up-the-dev-environment)
|
|
31
30
|
* [What versions of Node.js does it support?](#what-versions-of-nodejs-does-it-support)
|
|
@@ -681,11 +680,6 @@ of an object,
|
|
|
681
680
|
meaning slower tick times but faster overall parsing time.
|
|
682
681
|
The default value is `1024`.
|
|
683
682
|
|
|
684
|
-
* `options.Promise`:
|
|
685
|
-
Promise constructor that will be used
|
|
686
|
-
for promises returned by all methods.
|
|
687
|
-
Defaults to JS builtin `Promise`.
|
|
688
|
-
|
|
689
683
|
* `options.ndjson`:
|
|
690
684
|
If set to `true`,
|
|
691
685
|
newline characters at the root level
|
|
@@ -799,11 +793,6 @@ of an object,
|
|
|
799
793
|
meaning slower tick times but faster overall serialisation time.
|
|
800
794
|
The default value is `1024`.
|
|
801
795
|
|
|
802
|
-
* `options.Promise`:
|
|
803
|
-
Promise constructor that will be used
|
|
804
|
-
for promises returned by all methods.
|
|
805
|
-
Defaults to JS builtin `Promise`.
|
|
806
|
-
|
|
807
796
|
## Is it possible to pause parsing or serialisation from calling code?
|
|
808
797
|
|
|
809
798
|
Yes it is!
|
package/package.json
CHANGED