@koine/utils 1.0.49 → 1.0.52

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.
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Empty img pixel as a string to inline
3
+ *
4
+ * @category img
5
+ */
6
+ export declare const imgEmptyPixel = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=";
7
+ export default imgEmptyPixel;
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Empty img pixel as a string to inline
3
+ *
4
+ * @category img
5
+ */
6
+ export var imgEmptyPixel = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=";
7
+ export default imgEmptyPixel;
package/index.d.ts CHANGED
@@ -57,6 +57,7 @@ export * from "./getUrlHashParams";
57
57
  export * from "./getUrlHashPathname";
58
58
  export * from "./getUrlPathnameParts";
59
59
  export * from "./getUrlQueryParams";
60
+ export * from "./imgEmptyPixel";
60
61
  export * from "./isAnyObject";
61
62
  export * from "./isArray";
62
63
  export * from "./isBlob";
package/index.js CHANGED
@@ -58,6 +58,7 @@ export * from "./getUrlHashParams";
58
58
  export * from "./getUrlHashPathname";
59
59
  export * from "./getUrlPathnameParts";
60
60
  export * from "./getUrlQueryParams";
61
+ export * from "./imgEmptyPixel";
61
62
  export * from "./isAnyObject";
62
63
  export * from "./isArray";
63
64
  export * from "./isBlob";
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.imgEmptyPixel = void 0;
4
+ /**
5
+ * Empty img pixel as a string to inline
6
+ *
7
+ * @category img
8
+ */
9
+ exports.imgEmptyPixel = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=";
10
+ exports.default = exports.imgEmptyPixel;
package/node/index.js CHANGED
@@ -61,6 +61,7 @@ tslib_1.__exportStar(require("./getUrlHashParams"), exports);
61
61
  tslib_1.__exportStar(require("./getUrlHashPathname"), exports);
62
62
  tslib_1.__exportStar(require("./getUrlPathnameParts"), exports);
63
63
  tslib_1.__exportStar(require("./getUrlQueryParams"), exports);
64
+ tslib_1.__exportStar(require("./imgEmptyPixel"), exports);
64
65
  tslib_1.__exportStar(require("./isAnyObject"), exports);
65
66
  tslib_1.__exportStar(require("./isArray"), exports);
66
67
  tslib_1.__exportStar(require("./isBlob"), exports);
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "peerDependencies": {
8
8
  "tslib": "^2.4.0"
9
9
  },
10
- "version": "1.0.49",
10
+ "version": "1.0.52",
11
11
  "module": "./index.js",
12
12
  "types": "./index.d.ts"
13
13
  }