@nattyjs/core 0.0.1-beta.26 → 0.0.1-beta.27

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/index.cjs CHANGED
@@ -223,9 +223,9 @@ function doubleDash(value) {
223
223
  return value ? value.replace(/--/g, "") : value;
224
224
  }
225
225
  function sanitizeSpecialCodes(value) {
226
+ value = ampersand(value);
226
227
  value = lessThan(value);
227
228
  value = greaterThan(value);
228
- value = ampersand(value);
229
229
  value = doubleDash(value);
230
230
  return value;
231
231
  }
package/dist/index.mjs CHANGED
@@ -221,9 +221,9 @@ function doubleDash(value) {
221
221
  return value ? value.replace(/--/g, "") : value;
222
222
  }
223
223
  function sanitizeSpecialCodes(value) {
224
+ value = ampersand(value);
224
225
  value = lessThan(value);
225
226
  value = greaterThan(value);
226
- value = ampersand(value);
227
227
  value = doubleDash(value);
228
228
  return value;
229
229
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nattyjs/core",
3
- "version": "0.0.1-beta.26",
3
+ "version": "0.0.1-beta.27",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "author": "ajayojha",
@@ -17,7 +17,7 @@
17
17
  "dependencies": {
18
18
  "tsyringe": "^4.7.0",
19
19
  "path-to-regexp": "6.2.1",
20
- "@nattyjs/common": "0.0.1-beta.26"
20
+ "@nattyjs/common": "0.0.1-beta.27"
21
21
  },
22
22
  "devDependencies": {
23
23
  "unbuild": "1.2.1"