yves 1.0.93 → 1.0.94

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/dist/yves.js +7 -7
  2. package/package.json +1 -1
package/dist/yves.js CHANGED
@@ -5271,7 +5271,7 @@ var LEGACY_ALIASES = {
5271
5271
  };
5272
5272
 
5273
5273
  var bind = require('function-bind');
5274
- var hasOwn = require('has');
5274
+ var hasOwn = require('hasown');
5275
5275
  var $concat = bind.call(Function.call, Array.prototype.concat);
5276
5276
  var $spliceApply = bind.call(Function.apply, Array.prototype.splice);
5277
5277
  var $replace = bind.call(Function.call, String.prototype.replace);
@@ -5407,7 +5407,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
5407
5407
  return value;
5408
5408
  };
5409
5409
 
5410
- },{"function-bind":22,"has":34,"has-proto":30,"has-symbols":31}],24:[function(require,module,exports){
5410
+ },{"function-bind":22,"has-proto":30,"has-symbols":31,"hasown":34}],24:[function(require,module,exports){
5411
5411
  'use strict';
5412
5412
 
5413
5413
  var GetIntrinsic = require('get-intrinsic');
@@ -6502,14 +6502,14 @@ module.exports = function hasToStringTagShams() {
6502
6502
  },{"has-symbols/shams":32}],34:[function(require,module,exports){
6503
6503
  'use strict';
6504
6504
 
6505
- var hasOwnProperty = {}.hasOwnProperty;
6506
6505
  var call = Function.prototype.call;
6506
+ var $hasOwn = Object.prototype.hasOwnProperty;
6507
+ var bind = require('function-bind');
6507
6508
 
6508
- module.exports = call.bind ? call.bind(hasOwnProperty) : function (O, P) {
6509
- return call.call(hasOwnProperty, O, P);
6510
- };
6509
+ /** @type {(o: {}, p: PropertyKey) => p is keyof o} */
6510
+ module.exports = bind.call(call, $hasOwn);
6511
6511
 
6512
- },{}],35:[function(require,module,exports){
6512
+ },{"function-bind":22}],35:[function(require,module,exports){
6513
6513
  /*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
6514
6514
  exports.read = function (buffer, offset, isLE, mLen, nBytes) {
6515
6515
  var e, m
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yves",
3
- "version": "1.0.93",
3
+ "version": "1.0.94",
4
4
  "description": "a customizable value inspector",
5
5
  "url": "http://github.com/jorisroling/yves",
6
6
  "repository": {