protoobject 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,7 +26,7 @@ Inspired by gRPC and Firebase.
26
26
 
27
27
  These methods ensure that the class and its heirs interact with the external system and will not contain backward incompatible changes.
28
28
 
29
- | --- type of the property --- | --- name of the property --- | --- description --- |
29
+ | type of the property | name of the property | description |
30
30
  | --- | --- | --- |
31
31
  | static | `fromJSON` | A method for converting a simple json to ProtoObject class or its heir |
32
32
  | dynamic | `toJSON` | A method for converting a ProtoObject class or its heir to simple json |
@@ -40,7 +40,7 @@ These methods ensure that the class and its heirs interact with the external sys
40
40
 
41
41
  These methods ensure the operation of the class itself and can change significantly over time.
42
42
 
43
- | --- type of the property --- | --- name of the property --- | --- description --- |
43
+ | type of the property | name of the property | description |
44
44
  | --- | --- | --- |
45
45
  | static | `getProperties` | Get all properties of an object and its prototypes |
46
46
  | static | `getEnumerableProperties` | Get all enumerable properties of an object and its prototypes |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protoobject",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "A universal class for creating any JSON objects and simple manipulations with them.",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",