- updating object-hash to 2.2.0 #291

This commit is contained in:
ezolenko 2021-11-23 10:17:44 -07:00
parent 86296a7e7d
commit ef4725b5c8
6 changed files with 16 additions and 10 deletions

View File

@ -24007,6 +24007,9 @@ function typeHasher(options, writeTo, context){
'Use "options.replacer" or "options.ignoreUnknown"\n');
},
_domwindow: function() { return write('domwindow'); },
_bigint: function(number){
return write('bigint:' + number.toString());
},
/* Node.js standard native objects */
_process: function() { return write('process'); },
_timer: function() { return write('timer'); },

File diff suppressed because one or more lines are too long

View File

@ -23976,6 +23976,9 @@ function typeHasher(options, writeTo, context){
'Use "options.replacer" or "options.ignoreUnknown"\n');
},
_domwindow: function() { return write('domwindow'); },
_bigint: function(number){
return write('bigint:' + number.toString());
},
/* Node.js standard native objects */
_process: function() { return write('process'); },
_timer: function() { return write('timer'); },

File diff suppressed because one or more lines are too long

14
package-lock.json generated
View File

@ -31,7 +31,7 @@
"colors": "1.4.0",
"graphlib": "2.1.8",
"lodash": "4.17.21",
"object-hash": "2.1.1",
"object-hash": "2.2.0",
"rimraf": "3.0.2",
"rollup": "^2.48.0",
"rollup-plugin-re": "1.0.7",
@ -821,9 +821,9 @@
}
},
"node_modules/object-hash": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.1.1.tgz",
"integrity": "sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ==",
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz",
"integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==",
"dev": true,
"engines": {
"node": ">= 6"
@ -1843,9 +1843,9 @@
}
},
"object-hash": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.1.1.tgz",
"integrity": "sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ==",
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz",
"integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==",
"dev": true
},
"once": {

View File

@ -53,7 +53,7 @@
"colors": "1.4.0",
"graphlib": "2.1.8",
"lodash": "4.17.21",
"object-hash": "2.1.1",
"object-hash": "2.2.0",
"rimraf": "3.0.2",
"rollup": "^2.48.0",
"@rollup/plugin-commonjs": "17.1.0",