@boboddy/sdk 0.5.0 → 0.5.2

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/jsonc.js CHANGED
@@ -128,7 +128,7 @@ var stripTrailingCommas = (content) => {
128
128
  };
129
129
  var parseJsonc = (content) => JSON.parse(stripTrailingCommas(stripJsoncComments(content)));
130
130
  export {
131
- stripTrailingCommas,
131
+ parseJsonc,
132
132
  stripJsoncComments,
133
- parseJsonc
133
+ stripTrailingCommas
134
134
  };