@gabrielrufino/cube 1.0.27 → 1.0.30
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.
|
@@ -101,9 +101,6 @@ var HashTableLinearProbing = /** @class */ (function () {
|
|
|
101
101
|
HashTableLinearProbing.prototype._nextPositionOf = function (position) {
|
|
102
102
|
return (position + 1) % this._maxSize;
|
|
103
103
|
};
|
|
104
|
-
HashTableLinearProbing.prototype._previousPositionOf = function (position) {
|
|
105
|
-
return (position + this.size - 1) % this._maxSize;
|
|
106
|
-
};
|
|
107
104
|
HashTableLinearProbing.prototype[Symbol.toPrimitive] = function (type) {
|
|
108
105
|
var primitives = {
|
|
109
106
|
default: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gabrielrufino/cube",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.30",
|
|
4
4
|
"description": "Data Structures and Algorithms made in Typescript",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"Algorithms"
|
|
23
23
|
],
|
|
24
24
|
"author": "Gabriel Rufino <contato@gabrielrufino.com>",
|
|
25
|
+
"funding": "https://github.com/sponsors/gabrielrufino",
|
|
25
26
|
"license": "UNLICENSED",
|
|
26
27
|
"bugs": {
|
|
27
28
|
"url": "https://github.com/gabrielrufino/cube/issues"
|
|
@@ -32,16 +33,16 @@
|
|
|
32
33
|
"@stryker-mutator/core": "^6.0.2",
|
|
33
34
|
"@stryker-mutator/jest-runner": "^6.0.2",
|
|
34
35
|
"@stryker-mutator/typescript-checker": "^6.0.2",
|
|
35
|
-
"@types/jest": "^27.5.
|
|
36
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
37
|
-
"@typescript-eslint/parser": "^5.
|
|
38
|
-
"eslint": "^8.
|
|
36
|
+
"@types/jest": "^27.5.2",
|
|
37
|
+
"@typescript-eslint/eslint-plugin": "^5.28.0",
|
|
38
|
+
"@typescript-eslint/parser": "^5.28.0",
|
|
39
|
+
"eslint": "^8.17.0",
|
|
39
40
|
"eslint-config-xo": "^0.39.0",
|
|
40
41
|
"jest": "^27.5.1",
|
|
41
42
|
"rimraf": "^3.0.2",
|
|
42
43
|
"stryker-cli": "^1.0.2",
|
|
43
44
|
"ts-jest": "^27.1.5",
|
|
44
|
-
"ts-node": "^10.8.
|
|
45
|
-
"typescript": "^4.7.
|
|
45
|
+
"ts-node": "^10.8.1",
|
|
46
|
+
"typescript": "^4.7.3"
|
|
46
47
|
}
|
|
47
48
|
}
|