@mojir/lits 2.1.13 → 2.1.14

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.
@@ -12421,10 +12421,7 @@ var functionExecutors = {
12421
12421
  NativeJsFunction: function (fn, params, sourceCodeInfo) {
12422
12422
  var _a;
12423
12423
  try {
12424
- // eslint-disable-next-line ts/no-unsafe-assignment
12425
- var clonedParams = JSON.parse(JSON.stringify(params));
12426
- // eslint-disable-next-line ts/no-unsafe-argument
12427
- return toAny((_a = fn.nativeFn).fn.apply(_a, __spreadArray([], __read(clonedParams), false)));
12424
+ return toAny((_a = fn.nativeFn).fn.apply(_a, __spreadArray([], __read(params), false)));
12428
12425
  }
12429
12426
  catch (error) {
12430
12427
  var message = typeof error === 'string'