@pronto-tools-and-more/custom-js-functions 15.5.0 → 15.6.1

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/main.js CHANGED
@@ -550,7 +550,6 @@
550
550
  }
551
551
  };
552
552
  var getLanguage = (content) => {
553
- console.log({ content });
554
553
  if (typeof content === "string") {
555
554
  return normalizeLanguage(content);
556
555
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pronto-tools-and-more/custom-js-functions",
3
- "version": "15.5.0",
3
+ "version": "15.6.1",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "type": "module",
@@ -22,7 +22,6 @@ const normalizeLanguage = (language) => {
22
22
  };
23
23
 
24
24
  export const getLanguage = (content) => {
25
- console.log({ content });
26
25
  if (typeof content === "string") {
27
26
  return normalizeLanguage(content);
28
27
  }