diff --git a/.npmignore b/.npmignore index 7a9010a..92b971e 100644 --- a/.npmignore +++ b/.npmignore @@ -1,9 +1,15 @@ -.gitignore .github -node_modules -object.json .nyc_output -out docs +node_modules +object.json src -Dockerfile \ No newline at end of file +test +.eslintrc.js +.gitignore +.npmignore +Dockerfile +package-lock.json +tsconfig.json +tslint.json +typedoc.json \ No newline at end of file diff --git a/docs/classes/_index_.parser.html b/docs/classes/_index_.parser.html index 6d31cce..cb112f7 100644 --- a/docs/classes/_index_.parser.html +++ b/docs/classes/_index_.parser.html @@ -193,7 +193,7 @@

constructor

@@ -238,7 +238,7 @@

Private __buffers

__buffers: Buffer[]
@@ -253,7 +253,7 @@

Private __bytesRead

__bytesRead: number
@@ -268,7 +268,7 @@

Private __encoding

__encoding: "utf8" | "utf-8" | "base64" | "latin1" | "binary" | "hex"
@@ -283,7 +283,7 @@

Private __leftBrace

__leftBrace: number
@@ -298,7 +298,7 @@

Private __openQuotes

__openQuotes: boolean
@@ -313,7 +313,7 @@

Private __rightBrace

__rightBrace: number
@@ -328,7 +328,7 @@

Private __separators

__separators: { end: number; middle: number; start: number }
@@ -511,7 +511,7 @@

Static __empty: Buffer = Buffer.from("")

@@ -551,7 +551,7 @@

Private __clear

  • @@ -573,7 +573,7 @@

    Private __handler

  • @@ -654,7 +654,7 @@

    Private _final

    @@ -686,7 +686,7 @@

    Private _flush

    @@ -742,7 +742,7 @@

    Private _transform

    @@ -3185,7 +3185,7 @@

    setEncoding

    diff --git a/docs/classes/_index_.stringifer.html b/docs/classes/_index_.stringifer.html index 7a74061..1fed9d9 100644 --- a/docs/classes/_index_.stringifer.html +++ b/docs/classes/_index_.stringifer.html @@ -187,7 +187,7 @@

    constructor

    @@ -232,7 +232,7 @@

    Private __bytesWrite

    __bytesWrite: number
    @@ -247,7 +247,7 @@

    Private __encoding

    __encoding: "utf8" | "utf-8" | "base64" | "latin1" | "binary" | "hex"
    @@ -262,7 +262,7 @@

    Private __isString

    __isString: boolean
    @@ -277,7 +277,7 @@

    Private __separators

    __separators: { end: Buffer; middle: Buffer; start: Buffer }
    @@ -532,7 +532,7 @@

    Private _final

    @@ -564,7 +564,7 @@

    Private _flush

    @@ -620,7 +620,7 @@

    Private _transform

    @@ -3063,7 +3063,7 @@

    setEncoding

    diff --git a/docs/modules/_index_.html b/docs/modules/_index_.html index 0bd97c7..680bf1b 100644 --- a/docs/modules/_index_.html +++ b/docs/modules/_index_.html @@ -98,7 +98,7 @@

    Private
    diff --git a/package-lock.json b/package-lock.json index c8d8473..5df9431 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@sergdudko/objectstream", - "version": "2.0.0", + "version": "2.0.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 8c2c2e2..c9d3b0e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sergdudko/objectstream", - "version": "2.0.2", + "version": "2.0.3", "description": "Creates a stream to convert json from string or convert json to string.", "main": "./lib/index.js", "scripts": {