@akanjs/common 0.0.47 → 0.0.49

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 (41) hide show
  1. package/index.d.ts +18 -1
  2. package/package.json +1 -1
  3. package/index.js +0 -17
  4. package/src/index.js +0 -55
  5. /package/{src/Logger.d.ts → Logger.d.ts} +0 -0
  6. /package/{src/Logger.js → Logger.js} +0 -0
  7. /package/{src/applyMixins.d.ts → applyMixins.d.ts} +0 -0
  8. /package/{src/applyMixins.js → applyMixins.js} +0 -0
  9. /package/{src/capitalize.d.ts → capitalize.d.ts} +0 -0
  10. /package/{src/capitalize.js → capitalize.js} +0 -0
  11. /package/{src/deepObjectify.d.ts → deepObjectify.d.ts} +0 -0
  12. /package/{src/deepObjectify.js → deepObjectify.js} +0 -0
  13. /package/{src/index.d.ts → index.ts} +0 -0
  14. /package/{src/isDayjs.d.ts → isDayjs.d.ts} +0 -0
  15. /package/{src/isDayjs.js → isDayjs.js} +0 -0
  16. /package/{src/isQueryEqual.d.ts → isQueryEqual.d.ts} +0 -0
  17. /package/{src/isQueryEqual.js → isQueryEqual.js} +0 -0
  18. /package/{src/isValidDate.d.ts → isValidDate.d.ts} +0 -0
  19. /package/{src/isValidDate.js → isValidDate.js} +0 -0
  20. /package/{src/lowerlize.d.ts → lowerlize.d.ts} +0 -0
  21. /package/{src/lowerlize.js → lowerlize.js} +0 -0
  22. /package/{src/mergeVersion.d.ts → mergeVersion.d.ts} +0 -0
  23. /package/{src/mergeVersion.js → mergeVersion.js} +0 -0
  24. /package/{src/objectify.d.ts → objectify.d.ts} +0 -0
  25. /package/{src/objectify.js → objectify.js} +0 -0
  26. /package/{src/pathGet.d.ts → pathGet.d.ts} +0 -0
  27. /package/{src/pathGet.js → pathGet.js} +0 -0
  28. /package/{src/pathSet.d.ts → pathSet.d.ts} +0 -0
  29. /package/{src/pathSet.js → pathSet.js} +0 -0
  30. /package/{src/pluralize.d.ts → pluralize.d.ts} +0 -0
  31. /package/{src/pluralize.js → pluralize.js} +0 -0
  32. /package/{src/randomPick.d.ts → randomPick.d.ts} +0 -0
  33. /package/{src/randomPick.js → randomPick.js} +0 -0
  34. /package/{src/randomPicks.d.ts → randomPicks.d.ts} +0 -0
  35. /package/{src/randomPicks.js → randomPicks.js} +0 -0
  36. /package/{src/sleep.d.ts → sleep.d.ts} +0 -0
  37. /package/{src/sleep.js → sleep.js} +0 -0
  38. /package/{src/splitVersion.d.ts → splitVersion.d.ts} +0 -0
  39. /package/{src/splitVersion.js → splitVersion.js} +0 -0
  40. /package/{src/types.d.ts → types.d.ts} +0 -0
  41. /package/{src/types.js → types.js} +0 -0
package/index.d.ts CHANGED
@@ -1 +1,18 @@
1
- export * from "./src";
1
+ export type * from "./types";
2
+ export { splitVersion } from "./splitVersion";
3
+ export { deepObjectify } from "./deepObjectify";
4
+ export { pathGet } from "./pathGet";
5
+ export { isQueryEqual } from "./isQueryEqual";
6
+ export { isValidDate } from "./isValidDate";
7
+ export { objectify } from "./objectify";
8
+ export { randomPick } from "./randomPick";
9
+ export { randomPicks } from "./randomPicks";
10
+ export { pathSet } from "./pathSet";
11
+ export { isDayjs } from "./isDayjs";
12
+ export { mergeVersion } from "./mergeVersion";
13
+ export { pluralize } from "./pluralize";
14
+ export { applyMixins } from "./applyMixins";
15
+ export { capitalize } from "./capitalize";
16
+ export { Logger } from "./Logger";
17
+ export { lowerlize } from "./lowerlize";
18
+ export { sleep } from "./sleep";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/common",
3
- "version": "0.0.47",
3
+ "version": "0.0.49",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"
package/index.js DELETED
@@ -1,17 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __copyProps = (to, from, except, desc) => {
6
- if (from && typeof from === "object" || typeof from === "function") {
7
- for (let key of __getOwnPropNames(from))
8
- if (!__hasOwnProp.call(to, key) && key !== except)
9
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10
- }
11
- return to;
12
- };
13
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
14
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
- var common_exports = {};
16
- module.exports = __toCommonJS(common_exports);
17
- __reExport(common_exports, require("./src"), module.exports);
package/src/index.js DELETED
@@ -1,55 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var src_exports = {};
19
- __export(src_exports, {
20
- Logger: () => import_Logger.Logger,
21
- applyMixins: () => import_applyMixins.applyMixins,
22
- capitalize: () => import_capitalize.capitalize,
23
- deepObjectify: () => import_deepObjectify.deepObjectify,
24
- isDayjs: () => import_isDayjs.isDayjs,
25
- isQueryEqual: () => import_isQueryEqual.isQueryEqual,
26
- isValidDate: () => import_isValidDate.isValidDate,
27
- lowerlize: () => import_lowerlize.lowerlize,
28
- mergeVersion: () => import_mergeVersion.mergeVersion,
29
- objectify: () => import_objectify.objectify,
30
- pathGet: () => import_pathGet.pathGet,
31
- pathSet: () => import_pathSet.pathSet,
32
- pluralize: () => import_pluralize.pluralize,
33
- randomPick: () => import_randomPick.randomPick,
34
- randomPicks: () => import_randomPicks.randomPicks,
35
- sleep: () => import_sleep.sleep,
36
- splitVersion: () => import_splitVersion.splitVersion
37
- });
38
- module.exports = __toCommonJS(src_exports);
39
- var import_splitVersion = require("./splitVersion");
40
- var import_deepObjectify = require("./deepObjectify");
41
- var import_pathGet = require("./pathGet");
42
- var import_isQueryEqual = require("./isQueryEqual");
43
- var import_isValidDate = require("./isValidDate");
44
- var import_objectify = require("./objectify");
45
- var import_randomPick = require("./randomPick");
46
- var import_randomPicks = require("./randomPicks");
47
- var import_pathSet = require("./pathSet");
48
- var import_isDayjs = require("./isDayjs");
49
- var import_mergeVersion = require("./mergeVersion");
50
- var import_pluralize = require("./pluralize");
51
- var import_applyMixins = require("./applyMixins");
52
- var import_capitalize = require("./capitalize");
53
- var import_Logger = require("./Logger");
54
- var import_lowerlize = require("./lowerlize");
55
- var import_sleep = require("./sleep");
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes