gj-boomlings-api 1.3.1 → 1.3.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.
@@ -1,7 +1,7 @@
1
1
  module.exports = {
2
2
  decCommentFromHistory:
3
3
  function(comment) {
4
- const decB64 = require("./decB64.js");
4
+ const {decB64} = require("./decB64.js");
5
5
 
6
6
  let levelID = comment.split("~1~")[1].split("~3~")[0];
7
7
  let commentContent = comment.split("2~")[1].split("~1~")[0];
@@ -1,7 +1,7 @@
1
1
  module.exports = {
2
2
  decodeGJComment:
3
3
  function(comment) {
4
- const decB64 = require("./decB64.js");
4
+ const {decB64} = require("./decB64.js");
5
5
 
6
6
  let spl = comment.split("~");
7
7
  let cmnt = [];
@@ -1,7 +1,7 @@
1
1
  module.exports = {
2
2
  decodeLevel:
3
3
  async function(level){
4
- const decB64 = require("./decB64.js");
4
+ const {decB64} = require("./decB64.js");
5
5
 
6
6
  let spl = level.split(':');
7
7
  let levelInfo = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gj-boomlings-api",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "A light-weight Geometry Dash API wrapper",
5
5
  "main": "index.js",
6
6
  "scripts": {