@94ai/nf-audio 3.1.41 → 3.1.43

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.
@@ -8,7 +8,7 @@ function getDefaultExportFromCjs(x) {
8
8
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
9
9
  }
10
10
  var check = function(it) {
11
- return it && it.Math == Math && it;
11
+ return it && it.Math === Math && it;
12
12
  };
13
13
  var global$d = (
14
14
  // eslint-disable-next-line es/no-global-this -- safe
@@ -79,7 +79,7 @@ var descriptors = !fails$7(function() {
79
79
  get: function() {
80
80
  return 7;
81
81
  }
82
- })[1] != 7;
82
+ })[1] !== 7;
83
83
  });
84
84
  var NATIVE_BIND$1 = functionBindNative;
85
85
  var call$4 = Function.prototype.call;
@@ -112,7 +112,7 @@ var split = uncurryThis$a("".split);
112
112
  var indexedObject = fails$6(function() {
113
113
  return !$Object$3("z").propertyIsEnumerable(0);
114
114
  }) ? function(it) {
115
- return classof$2(it) == "String" ? split(it, "") : $Object$3(it);
115
+ return classof$2(it) === "String" ? split(it, "") : $Object$3(it);
116
116
  } : $Object$3;
117
117
  var isNullOrUndefined$2 = function(it) {
118
118
  return it === null || it === void 0;
@@ -175,7 +175,7 @@ var fails$5 = fails$9;
175
175
  var global$a = global$d;
176
176
  var $String$3 = global$a.String;
177
177
  var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$5(function() {
178
- var symbol = Symbol();
178
+ var symbol = Symbol("symbol detection");
179
179
  return !$String$3(symbol) || !(Object(symbol) instanceof Symbol) || // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
180
180
  !Symbol.sham && V8_VERSION && V8_VERSION < 41;
181
181
  });
@@ -252,10 +252,10 @@ var store = sharedStore;
252
252
  (shared$1.exports = function(key, value) {
253
253
  return store[key] || (store[key] = value !== void 0 ? value : {});
254
254
  })("versions", []).push({
255
- version: "3.31.1",
255
+ version: "3.32.1",
256
256
  mode: "pure",
257
257
  copyright: "© 2014-2023 Denis Pushkarev (zloirock.ru)",
258
- license: "https://github.com/zloirock/core-js/blob/v3.31.1/LICENSE",
258
+ license: "https://github.com/zloirock/core-js/blob/v3.32.1/LICENSE",
259
259
  source: "https://github.com/zloirock/core-js"
260
260
  });
261
261
  var sharedExports = shared$1.exports;
@@ -338,7 +338,7 @@ var ie8DomDefine = !DESCRIPTORS$5 && !fails$4(function() {
338
338
  get: function() {
339
339
  return 7;
340
340
  }
341
- }).a != 7;
341
+ }).a !== 7;
342
342
  });
343
343
  var DESCRIPTORS$4 = descriptors;
344
344
  var call$1 = functionCall;
@@ -365,7 +365,7 @@ var isCallable$3 = isCallable$9;
365
365
  var replacement = /#|\.prototype\./;
366
366
  var isForced$1 = function(feature, detection) {
367
367
  var value = data[normalize(feature)];
368
- return value == POLYFILL ? true : value == NATIVE ? false : isCallable$3(detection) ? fails$3(detection) : !!detection;
368
+ return value === POLYFILL ? true : value === NATIVE ? false : isCallable$3(detection) ? fails$3(detection) : !!detection;
369
369
  };
370
370
  var normalize = isForced$1.normalize = function(string) {
371
371
  return String(string).replace(replacement, ".").toLowerCase();
@@ -392,7 +392,7 @@ var v8PrototypeDefineBug = DESCRIPTORS$3 && fails$2(function() {
392
392
  }, "prototype", {
393
393
  value: 42,
394
394
  writable: false
395
- }).prototype != 42;
395
+ }).prototype !== 42;
396
396
  });
397
397
  var isObject = isObject$4;
398
398
  var $String$1 = String;
@@ -541,7 +541,7 @@ var TO_STRING_TAG = wellKnownSymbol("toStringTag");
541
541
  var $Object = Object;
542
542
  var CORRECT_ARGUMENTS = classofRaw(function() {
543
543
  return arguments;
544
- }()) == "Arguments";
544
+ }()) === "Arguments";
545
545
  var tryGet = function(it, key) {
546
546
  try {
547
547
  return it[key];
@@ -550,7 +550,7 @@ var tryGet = function(it, key) {
550
550
  };
551
551
  var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function(it) {
552
552
  var O, tag, result;
553
- return it === void 0 ? "Undefined" : it === null ? "Null" : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == "string" ? tag : CORRECT_ARGUMENTS ? classofRaw(O) : (result = classofRaw(O)) == "Object" && isCallable$1(O.callee) ? "Arguments" : result;
553
+ return it === void 0 ? "Undefined" : it === null ? "Null" : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == "string" ? tag : CORRECT_ARGUMENTS ? classofRaw(O) : (result = classofRaw(O)) === "Object" && isCallable$1(O.callee) ? "Arguments" : result;
554
554
  };
555
555
  var classof = classof$1;
556
556
  var $String = String;
@@ -610,7 +610,7 @@ var $$3 = _export;
610
610
  var $parseInt = numberParseInt;
611
611
  $$3({
612
612
  global: true,
613
- forced: parseInt != $parseInt
613
+ forced: parseInt !== $parseInt
614
614
  }, {
615
615
  parseInt: $parseInt
616
616
  });
@@ -644,7 +644,7 @@ var validateArgumentsLength = validateArgumentsLength$1;
644
644
  var Function$1 = global$3.Function;
645
645
  var WRAP = /MSIE .\./.test(USER_AGENT) || ENGINE_IS_BUN && function() {
646
646
  var version2 = global$3.Bun.version.split(".");
647
- return version2.length < 3 || version2[0] == 0 && (version2[1] < 3 || version2[1] == 3 && version2[2] == 0);
647
+ return version2.length < 3 || version2[0] === "0" && (version2[1] < 3 || version2[1] === "3" && version2[2] === "0");
648
648
  }();
649
649
  var schedulersFix$2 = function(scheduler, hasTimeArg) {
650
650
  var firstParamIndex = hasTimeArg ? 2 : 1;
@@ -725,10 +725,10 @@ var createMethod = function(IS_INCLUDES) {
725
725
  var length = lengthOfArrayLike(O);
726
726
  var index = toAbsoluteIndex(fromIndex, length);
727
727
  var value;
728
- if (IS_INCLUDES && el != el)
728
+ if (IS_INCLUDES && el !== el)
729
729
  while (length > index) {
730
730
  value = O[index++];
731
- if (value != value)
731
+ if (value !== value)
732
732
  return true;
733
733
  }
734
734
  else
@@ -804,13 +804,13 @@ var objectAssign = !$assign || fails(function() {
804
804
  return true;
805
805
  var A = {};
806
806
  var B = {};
807
- var symbol = Symbol();
807
+ var symbol = Symbol("assign detection");
808
808
  var alphabet = "abcdefghijklmnopqrst";
809
809
  A[symbol] = 7;
810
810
  alphabet.split("").forEach(function(chr) {
811
811
  B[chr] = chr;
812
812
  });
813
- return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join("") != alphabet;
813
+ return $assign({}, A)[symbol] !== 7 || objectKeys($assign({}, B)).join("") !== alphabet;
814
814
  }) ? function assign(target, source) {
815
815
  var T = toObject(target);
816
816
  var argumentsLength = arguments.length;
@@ -6,7 +6,7 @@ function getDefaultExportFromCjs(x) {
6
6
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
7
7
  }
8
8
  var check = function(it) {
9
- return it && it.Math == Math && it;
9
+ return it && it.Math === Math && it;
10
10
  };
11
11
  var global$d = (
12
12
  // eslint-disable-next-line es/no-global-this -- safe
@@ -77,7 +77,7 @@ var descriptors = !fails$7(function() {
77
77
  get: function() {
78
78
  return 7;
79
79
  }
80
- })[1] != 7;
80
+ })[1] !== 7;
81
81
  });
82
82
  var NATIVE_BIND$1 = functionBindNative;
83
83
  var call$4 = Function.prototype.call;
@@ -110,7 +110,7 @@ var split = uncurryThis$a("".split);
110
110
  var indexedObject = fails$6(function() {
111
111
  return !$Object$3("z").propertyIsEnumerable(0);
112
112
  }) ? function(it) {
113
- return classof$2(it) == "String" ? split(it, "") : $Object$3(it);
113
+ return classof$2(it) === "String" ? split(it, "") : $Object$3(it);
114
114
  } : $Object$3;
115
115
  var isNullOrUndefined$2 = function(it) {
116
116
  return it === null || it === void 0;
@@ -173,7 +173,7 @@ var fails$5 = fails$9;
173
173
  var global$a = global$d;
174
174
  var $String$3 = global$a.String;
175
175
  var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$5(function() {
176
- var symbol = Symbol();
176
+ var symbol = Symbol("symbol detection");
177
177
  return !$String$3(symbol) || !(Object(symbol) instanceof Symbol) || // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
178
178
  !Symbol.sham && V8_VERSION && V8_VERSION < 41;
179
179
  });
@@ -250,10 +250,10 @@ var store = sharedStore;
250
250
  (shared$1.exports = function(key, value) {
251
251
  return store[key] || (store[key] = value !== void 0 ? value : {});
252
252
  })("versions", []).push({
253
- version: "3.31.1",
253
+ version: "3.32.1",
254
254
  mode: "pure",
255
255
  copyright: "© 2014-2023 Denis Pushkarev (zloirock.ru)",
256
- license: "https://github.com/zloirock/core-js/blob/v3.31.1/LICENSE",
256
+ license: "https://github.com/zloirock/core-js/blob/v3.32.1/LICENSE",
257
257
  source: "https://github.com/zloirock/core-js"
258
258
  });
259
259
  var sharedExports = shared$1.exports;
@@ -336,7 +336,7 @@ var ie8DomDefine = !DESCRIPTORS$5 && !fails$4(function() {
336
336
  get: function() {
337
337
  return 7;
338
338
  }
339
- }).a != 7;
339
+ }).a !== 7;
340
340
  });
341
341
  var DESCRIPTORS$4 = descriptors;
342
342
  var call$1 = functionCall;
@@ -363,7 +363,7 @@ var isCallable$3 = isCallable$9;
363
363
  var replacement = /#|\.prototype\./;
364
364
  var isForced$1 = function(feature, detection) {
365
365
  var value = data[normalize(feature)];
366
- return value == POLYFILL ? true : value == NATIVE ? false : isCallable$3(detection) ? fails$3(detection) : !!detection;
366
+ return value === POLYFILL ? true : value === NATIVE ? false : isCallable$3(detection) ? fails$3(detection) : !!detection;
367
367
  };
368
368
  var normalize = isForced$1.normalize = function(string) {
369
369
  return String(string).replace(replacement, ".").toLowerCase();
@@ -390,7 +390,7 @@ var v8PrototypeDefineBug = DESCRIPTORS$3 && fails$2(function() {
390
390
  }, "prototype", {
391
391
  value: 42,
392
392
  writable: false
393
- }).prototype != 42;
393
+ }).prototype !== 42;
394
394
  });
395
395
  var isObject = isObject$4;
396
396
  var $String$1 = String;
@@ -539,7 +539,7 @@ var TO_STRING_TAG = wellKnownSymbol("toStringTag");
539
539
  var $Object = Object;
540
540
  var CORRECT_ARGUMENTS = classofRaw(function() {
541
541
  return arguments;
542
- }()) == "Arguments";
542
+ }()) === "Arguments";
543
543
  var tryGet = function(it, key) {
544
544
  try {
545
545
  return it[key];
@@ -548,7 +548,7 @@ var tryGet = function(it, key) {
548
548
  };
549
549
  var classof$1 = TO_STRING_TAG_SUPPORT ? classofRaw : function(it) {
550
550
  var O, tag, result;
551
- return it === void 0 ? "Undefined" : it === null ? "Null" : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == "string" ? tag : CORRECT_ARGUMENTS ? classofRaw(O) : (result = classofRaw(O)) == "Object" && isCallable$1(O.callee) ? "Arguments" : result;
551
+ return it === void 0 ? "Undefined" : it === null ? "Null" : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == "string" ? tag : CORRECT_ARGUMENTS ? classofRaw(O) : (result = classofRaw(O)) === "Object" && isCallable$1(O.callee) ? "Arguments" : result;
552
552
  };
553
553
  var classof = classof$1;
554
554
  var $String = String;
@@ -608,7 +608,7 @@ var $$3 = _export;
608
608
  var $parseInt = numberParseInt;
609
609
  $$3({
610
610
  global: true,
611
- forced: parseInt != $parseInt
611
+ forced: parseInt !== $parseInt
612
612
  }, {
613
613
  parseInt: $parseInt
614
614
  });
@@ -642,7 +642,7 @@ var validateArgumentsLength = validateArgumentsLength$1;
642
642
  var Function$1 = global$3.Function;
643
643
  var WRAP = /MSIE .\./.test(USER_AGENT) || ENGINE_IS_BUN && function() {
644
644
  var version2 = global$3.Bun.version.split(".");
645
- return version2.length < 3 || version2[0] == 0 && (version2[1] < 3 || version2[1] == 3 && version2[2] == 0);
645
+ return version2.length < 3 || version2[0] === "0" && (version2[1] < 3 || version2[1] === "3" && version2[2] === "0");
646
646
  }();
647
647
  var schedulersFix$2 = function(scheduler, hasTimeArg) {
648
648
  var firstParamIndex = hasTimeArg ? 2 : 1;
@@ -723,10 +723,10 @@ var createMethod = function(IS_INCLUDES) {
723
723
  var length = lengthOfArrayLike(O);
724
724
  var index = toAbsoluteIndex(fromIndex, length);
725
725
  var value;
726
- if (IS_INCLUDES && el != el)
726
+ if (IS_INCLUDES && el !== el)
727
727
  while (length > index) {
728
728
  value = O[index++];
729
- if (value != value)
729
+ if (value !== value)
730
730
  return true;
731
731
  }
732
732
  else
@@ -802,13 +802,13 @@ var objectAssign = !$assign || fails(function() {
802
802
  return true;
803
803
  var A = {};
804
804
  var B = {};
805
- var symbol = Symbol();
805
+ var symbol = Symbol("assign detection");
806
806
  var alphabet = "abcdefghijklmnopqrst";
807
807
  A[symbol] = 7;
808
808
  alphabet.split("").forEach(function(chr) {
809
809
  B[chr] = chr;
810
810
  });
811
- return $assign({}, A)[symbol] != 7 || objectKeys($assign({}, B)).join("") != alphabet;
811
+ return $assign({}, A)[symbol] !== 7 || objectKeys($assign({}, B)).join("") !== alphabet;
812
812
  }) ? function assign(target, source) {
813
813
  var T = toObject(target);
814
814
  var argumentsLength = arguments.length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@94ai/nf-audio",
3
- "version": "3.1.41",
3
+ "version": "3.1.43",
4
4
  "description": "> TODO: description",
5
5
  "keywords": [],
6
6
  "author": "liuxiangxiang <liuxiangxiang@94ai.com>",
@@ -14,7 +14,7 @@
14
14
  "url": "http://94ai.gitlab.com/zoujiahe/common-ui.git"
15
15
  },
16
16
  "dependencies": {
17
- "@94ai/nf-theme-chalk": "^1.0.0",
17
+ "@94ai/nf-theme-chalk": "^3.1.43",
18
18
  "vue-demi": "^0.14.5"
19
19
  },
20
20
  "peerDependenciesMeta": {
@@ -30,5 +30,5 @@
30
30
  "types": "lib/index.d.ts",
31
31
  "main": "lib/nf-audio.cjs.js",
32
32
  "module": "lib/nf-audio.esm-bundler.js",
33
- "gitHead": "2b60696b405feafbbaeed385e5bcf666ceefbf2c"
33
+ "gitHead": "09da8e29e5aa0a1d4a7922f7b7d8e66eb91a7b67"
34
34
  }