html-react-parser 5.2.5 → 5.2.6
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.
- package/dist/html-react-parser.js +1 -1
- package/dist/html-react-parser.js.map +1 -1
- package/dist/html-react-parser.min.js.map +1 -1
- package/lib/types.d.ts.map +1 -1
- package/lib/utilities.js +1 -1
- package/lib/utilities.js.map +1 -1
- package/package.json +22 -23
- package/src/types.ts +5 -0
- package/src/utilities.ts +1 -1
|
@@ -2684,7 +2684,7 @@
|
|
|
2684
2684
|
* @param arg - The argument to be returned.
|
|
2685
2685
|
* @returns - The input argument `arg`.
|
|
2686
2686
|
*/
|
|
2687
|
-
var returnFirstArg = function (arg) { return arg; };
|
|
2687
|
+
var returnFirstArg = function (arg) { return arg; }; // eslint-disable-line @typescript-eslint/no-explicit-any
|
|
2688
2688
|
exports.returnFirstArg = returnFirstArg;
|
|
2689
2689
|
|
|
2690
2690
|
} (utilities$1));
|