@daaler/jutils 0.4.7 → 0.4.8
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/error/error.d.ts +1 -0
- package/dist/error/error.js +4 -0
- package/dist/error/error.js.map +1 -0
- package/dist/error/not-implemented.d.ts +3 -4
- package/dist/error/not-implemented.js +4 -5
- package/dist/error/not-implemented.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/interfaces.d.ts +1 -0
- package/dist/interfaces.js +2 -0
- package/dist/interfaces.js.map +1 -0
- package/dist/jdom/dom-utils-interface.d.ts +6 -0
- package/dist/jdom/dom-utils-interface.js +2 -0
- package/dist/jdom/dom-utils-interface.js.map +1 -0
- package/dist/jdom/dom-utils.d.ts +2 -1
- package/dist/jdom/dom-utils.js.map +1 -1
- package/package.json +2 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function error(message?: string, options?: ErrorOptions): never;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error.js","sourceRoot":"","sources":["../../src/error/error.ts"],"names":[],"mappings":"AACA,MAAM,UAAU,KAAK,CAAC,OAAe,EAAC,OAAqB;IAC1D,MAAM,IAAI,KAAK,CAAC,OAAO,EAAC,OAAO,CAAC,CAAC;AAClC,CAAC"}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
export default class NotImplementedError extends Error {
|
|
2
2
|
}
|
|
3
|
-
declare
|
|
4
|
-
export
|
|
5
|
-
export { notImplemented };
|
|
3
|
+
export declare function notImplementedError(message?: string, options?: ErrorOptions): never;
|
|
4
|
+
export { notImplementedError as notImplemented };
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
class NotImplementedError extends Error {
|
|
1
|
+
export default class NotImplementedError extends Error {
|
|
2
2
|
}
|
|
3
|
-
|
|
3
|
+
export function notImplementedError(message, options) {
|
|
4
4
|
throw new NotImplementedError(message, options);
|
|
5
|
-
}
|
|
6
|
-
export
|
|
7
|
-
export { notImplemented };
|
|
5
|
+
}
|
|
6
|
+
export { notImplementedError as notImplemented }; // legacy naming support
|
|
8
7
|
//# sourceMappingURL=not-implemented.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"not-implemented.js","sourceRoot":"","sources":["../../src/error/not-implemented.ts"],"names":[],"mappings":"AACA,MAAM,mBAAoB,SAAQ,KAAK;CAAG;
|
|
1
|
+
{"version":3,"file":"not-implemented.js","sourceRoot":"","sources":["../../src/error/not-implemented.ts"],"names":[],"mappings":"AACA,MAAM,CAAC,OAAO,OAAO,mBAAoB,SAAQ,KAAK;CAAG;AAEzD,MAAM,UAAU,mBAAmB,CAAC,OAAe,EAAC,OAAqB;IACxE,MAAM,IAAI,mBAAmB,CAAC,OAAO,EAAC,OAAO,CAAC,CAAC;AAChD,CAAC;AAED,OAAO,EAAE,mBAAmB,IAAI,cAAc,EAAE,CAAC,CAAC,wBAAwB"}
|
package/dist/index.d.ts
CHANGED
|
@@ -16,10 +16,10 @@ import Notifications from "./notifications/notifications.ts";
|
|
|
16
16
|
import Exception from "./exception/exception.ts";
|
|
17
17
|
import matchExceptions from "./exception/match-exceptions.ts";
|
|
18
18
|
import { registerException, getException, getExceptionNoError } from "./exception/exceptions.ts";
|
|
19
|
-
import NotImplementedError, { notImplemented } from "./error/not-implemented.ts";
|
|
19
|
+
import NotImplementedError, { notImplementedError, notImplemented } from "./error/not-implemented.ts";
|
|
20
20
|
import recursiveMerge from "./data/recursive-merge.ts";
|
|
21
21
|
export { interrupt, wait, timedifference, timefromnow, timefromx, zeroDate as zeroTime, // legacy naming
|
|
22
|
-
zeroDate, maxDate, JSchema, UUID, Integer, jdebug, WeakValueCache, IdBasedLRUCache, IdBasedCache, Notifications, Exception, matchExceptions, registerException, getException, getExceptionNoError, NotImplementedError, notImplemented, recursiveMerge, };
|
|
22
|
+
zeroDate, maxDate, JSchema, UUID, Integer, jdebug, WeakValueCache, IdBasedLRUCache, IdBasedCache, Notifications, Exception, matchExceptions, registerException, getException, getExceptionNoError, NotImplementedError, notImplementedError, notImplemented, recursiveMerge, };
|
|
23
23
|
export { default as isDigit } from "./string/is-digit.ts";
|
|
24
24
|
export { noop, noop1, noop2, noop3, noopn, pass } from "./op/noop.ts";
|
|
25
25
|
export { default as DomUtils } from "./jdom/dom-utils.ts";
|
package/dist/index.js
CHANGED
|
@@ -16,10 +16,10 @@ import Notifications from "./notifications/notifications.js";
|
|
|
16
16
|
import Exception from "./exception/exception.js";
|
|
17
17
|
import matchExceptions from "./exception/match-exceptions.js";
|
|
18
18
|
import { registerException, getException, getExceptionNoError } from "./exception/exceptions.js";
|
|
19
|
-
import NotImplementedError, { notImplemented } from "./error/not-implemented.js";
|
|
19
|
+
import NotImplementedError, { notImplementedError, notImplemented } from "./error/not-implemented.js";
|
|
20
20
|
import recursiveMerge from "./data/recursive-merge.js";
|
|
21
21
|
export { interrupt, wait, timedifference, timefromnow, timefromx, zeroDate as zeroTime, // legacy naming
|
|
22
|
-
zeroDate, maxDate, JSchema, UUID, Integer, jdebug, WeakValueCache, IdBasedLRUCache, IdBasedCache, Notifications, Exception, matchExceptions, registerException, getException, getExceptionNoError, NotImplementedError, notImplemented, recursiveMerge, };
|
|
22
|
+
zeroDate, maxDate, JSchema, UUID, Integer, jdebug, WeakValueCache, IdBasedLRUCache, IdBasedCache, Notifications, Exception, matchExceptions, registerException, getException, getExceptionNoError, NotImplementedError, notImplementedError, notImplemented, recursiveMerge, };
|
|
23
23
|
export { default as isDigit } from "./string/is-digit.js";
|
|
24
24
|
export { noop, noop1, noop2, noop3, noopn, pass } from "./op/noop.js";
|
|
25
25
|
export { default as DomUtils } from "./jdom/dom-utils.js";
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,6BAA6B,CAAC;AACpD,OAAO,IAAI,MAAM,wBAAwB,CAAC;AAC1C,OAAO,cAAc,MAAM,0BAA0B,CAAC;AACtD,OAAO,WAAW,MAAM,uBAAuB,CAAC;AAChD,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAC5C,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,OAAO,MAAM,oBAAoB,CAAC;AACzC,OAAO,OAAO,MAAM,sBAAsB,CAAC;AAC3C,OAAO,IAAI,MAAM,mBAAmB,CAAC;AACrC,OAAO,OAAO,MAAM,sBAAsB,CAAC;AAC3C,OAAO,MAAM,MAAM,mBAAmB,CAAC;AACvC,OAAO,cAAc,MAAM,6BAA6B,CAAC;AACzD,OAAO,eAAe,MAAM,+BAA+B,CAAC;AAC5D,OAAO,YAAY,MAAM,2BAA2B,CAAC;AACrD,OAAO,aAAa,MAAM,kCAAkC,CAAC;AAC7D,OAAO,SAAS,MAAM,0BAA0B,CAAC;AACjD,OAAO,eAAe,MAAM,iCAAiC,CAAC;AAC9D,OAAO,EAAE,iBAAiB,EAAC,YAAY,EAAC,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAC/F,OAAO,mBAAmB,EAAC,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,6BAA6B,CAAC;AACpD,OAAO,IAAI,MAAM,wBAAwB,CAAC;AAC1C,OAAO,cAAc,MAAM,0BAA0B,CAAC;AACtD,OAAO,WAAW,MAAM,uBAAuB,CAAC;AAChD,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAC5C,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,OAAO,MAAM,oBAAoB,CAAC;AACzC,OAAO,OAAO,MAAM,sBAAsB,CAAC;AAC3C,OAAO,IAAI,MAAM,mBAAmB,CAAC;AACrC,OAAO,OAAO,MAAM,sBAAsB,CAAC;AAC3C,OAAO,MAAM,MAAM,mBAAmB,CAAC;AACvC,OAAO,cAAc,MAAM,6BAA6B,CAAC;AACzD,OAAO,eAAe,MAAM,+BAA+B,CAAC;AAC5D,OAAO,YAAY,MAAM,2BAA2B,CAAC;AACrD,OAAO,aAAa,MAAM,kCAAkC,CAAC;AAC7D,OAAO,SAAS,MAAM,0BAA0B,CAAC;AACjD,OAAO,eAAe,MAAM,iCAAiC,CAAC;AAC9D,OAAO,EAAE,iBAAiB,EAAC,YAAY,EAAC,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAC/F,OAAO,mBAAmB,EAAC,EAAE,mBAAmB,EAAC,cAAc,EAAE,MAAM,4BAA4B,CAAC;AACpG,OAAO,cAAc,MAAM,2BAA2B,CAAC;AAEvD,OAAO,EACN,SAAS,EACT,IAAI,EACJ,cAAc,EACd,WAAW,EACX,SAAS,EACT,QAAQ,IAAI,QAAQ,EAAE,gBAAgB;AACtC,QAAQ,EACR,OAAO,EACP,OAAO,EACP,IAAI,EACJ,OAAO,EACP,MAAM,EACN,cAAc,EACd,eAAe,EACf,YAAY,EACZ,aAAa,EACb,SAAS,EACT,eAAe,EACf,iBAAiB,EACjB,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,EACnB,cAAc,EACd,cAAc,GACd,CAAC;AAEF,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,IAAI,EAAC,KAAK,EAAC,KAAK,EAAC,KAAK,EAAC,KAAK,EAAC,IAAI,EAAE,MAAM,cAAc,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as DomUtils } from "./jdom/dom-utils-interface.ts";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dom-utils-interface.js","sourceRoot":"","sources":["../../src/jdom/dom-utils-interface.ts"],"names":[],"mappings":""}
|
package/dist/jdom/dom-utils.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dom-utils.js","sourceRoot":"","sources":["../../src/jdom/dom-utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dom-utils.js","sourceRoot":"","sources":["../../src/jdom/dom-utils.ts"],"names":[],"mappings":"AAIA,MAAM,CAAC,OAAO,OAAO,QAAQ;IAC5B,SAAS,CAAU;IACnB,UAAU,CAAW;IACrB,cAAc,CAAe;IAE7B,YAAY,SAA8B,EAAC,UAAoB,EAAC,cAA4B;QAC3F,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;IACtC,CAAC;IAED,aAAa,CAAC,OAAc;QAC3B,OAAO,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;IAC9C,CAAC;IAED,cAAc,CAAC,IAAW;QACzB,OAAO,IAAI,CAAC,SAAS,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;IAC5C,CAAC;IAED,KAAK,CAAC,MAAa;QAClB,MAAM,QAAQ,GAAG,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,MAAM,EAAC,UAAU,CAAgB,CAAC;QACnF,MAAM,WAAW,GAAG,QAAQ,CAAC,eAAe,CAAC;QAC7C,OAAO,WAAW,CAAC;IACpB,CAAC;IAED,SAAS,CAAC,GAAe;QACxB,OAAO,IAAI,CAAC,cAAc,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC;IACnD,CAAC;CACD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daaler/jutils",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.8",
|
|
4
4
|
"description": "Utility functions for js",
|
|
5
5
|
"author": "Jarno Parviainen - jarno.parviainen@gmail.com",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": "./dist/index.js",
|
|
12
|
+
"./interfaces": "./dist/interfaces.js",
|
|
12
13
|
"./node": "./dist/node.js",
|
|
13
14
|
"./node-jsdom": "./dist/node-jsdom.js",
|
|
14
15
|
"./node-linkedom": "./dist/node-linkedom.js",
|