python-struct
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -5,10 +5,10 @@ module.exports = { | ||
browser: false, | ||
node: true | ||
node: true, | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 2018, | ||
sourceType: "module" | ||
sourceType: "module", | ||
}, | ||
globals: { | ||
"__base": true | ||
"__base": true, | ||
}, | ||
@@ -28,3 +28,3 @@ extends: ["eslint:recommended"], | ||
"nonwords": false, | ||
} | ||
}, | ||
], | ||
@@ -31,0 +31,0 @@ "comma-spacing": ["warn", { "before": false, "after": true }], |
{ | ||
"name": "python-struct", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Packs/Unpacks/Measures structs according to Python's `struct` format", | ||
@@ -33,5 +33,5 @@ "main": "src/node_adapter.js", | ||
"devDependencies": { | ||
"eslint": "^6.5.0", | ||
"husky": "^3.0.7" | ||
"eslint": "^7.0.0", | ||
"husky": "^4.2.5" | ||
} | ||
} |
@@ -458,3 +458,3 @@ /** | ||
static unpack(format, data, checkBounds) { | ||
return this.unpackFrom(format, data, checkBounds, 0); | ||
return PythonStruct.unpackFrom(format, data, checkBounds, 0); | ||
} | ||
@@ -461,0 +461,0 @@ |
28883