yet-another-js-utils 0.0.8 → 0.0.9

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/js-utils.js +1 -3
  2. package/package.json +1 -1
package/js-utils.js CHANGED
@@ -107,9 +107,7 @@ module.exports = {
107
107
  output += arguments[i];
108
108
  output += strings[i];
109
109
  }
110
- let fragment = document.createDocumentFragment();
111
- fragment.innerHTML = output;
112
- return fragment;
110
+ return output;
113
111
  },
114
112
 
115
113
  /**
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "yet-another-js-utils",
3
3
  "description": "Basic javascript utils",
4
4
  "authors": "Adrian Turcev",
5
- "version": "0.0.8",
5
+ "version": "0.0.9",
6
6
  "license": "MPL-2.0",
7
7
  "homepage": "https://github.com/adrianturcev/js-utils",
8
8
  "repository": {