@ezez/utils 1.4.0 → 1.6.0
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/CHANGELOG.md +9 -0
- package/README.md +3 -0
- package/dist/compareArrays.d.ts +7 -0
- package/dist/compareArrays.d.ts.map +1 -0
- package/dist/compareArrays.js +12 -0
- package/dist/compareArrays.js.map +1 -0
- package/dist/compareProps.d.ts +7 -0
- package/dist/compareProps.d.ts.map +1 -0
- package/dist/compareProps.js +14 -0
- package/dist/compareProps.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/unique.d.ts +3 -0
- package/dist/unique.d.ts.map +1 -0
- package/dist/unique.js +8 -0
- package/dist/unique.js.map +1 -0
- package/docs/assets/search.js +1 -1
- package/docs/functions/cap.html +10 -6
- package/docs/functions/capitalize.html +10 -6
- package/docs/functions/coalesce.html +10 -6
- package/docs/functions/compareArrays.html +148 -0
- package/docs/functions/compareProps.html +147 -0
- package/docs/functions/ensureArray.html +10 -6
- package/docs/functions/ensureDate.html +10 -6
- package/docs/functions/ensureError.html +10 -6
- package/docs/functions/ensurePrefix.html +10 -6
- package/docs/functions/ensureSuffix.html +10 -6
- package/docs/functions/ensureTimestamp.html +10 -6
- package/docs/functions/escapeRegExp.html +10 -6
- package/docs/functions/get.html +10 -6
- package/docs/functions/getMultiple.html +10 -6
- package/docs/functions/insertSeparator.html +10 -6
- package/docs/functions/isEmpty.html +10 -6
- package/docs/functions/isNumericString.html +10 -6
- package/docs/functions/isPlainObject.html +10 -6
- package/docs/functions/last.html +10 -6
- package/docs/functions/mapAsync.html +10 -6
- package/docs/functions/mapValues.html +10 -6
- package/docs/functions/match.html +10 -6
- package/docs/functions/merge.html +18 -14
- package/docs/functions/mostFrequent.html +10 -6
- package/docs/functions/noop.html +10 -6
- package/docs/functions/occurrences.html +10 -6
- package/docs/functions/omit.html +10 -6
- package/docs/functions/pick.html +10 -6
- package/docs/functions/pull.html +10 -6
- package/docs/functions/remove.html +10 -6
- package/docs/functions/replace.html +10 -6
- package/docs/functions/rethrow.html +10 -6
- package/docs/functions/safe.html +11 -7
- package/docs/functions/scale.html +10 -6
- package/docs/functions/seq.html +10 -6
- package/docs/functions/seqEarlyBreak.html +10 -6
- package/docs/functions/set.html +10 -6
- package/docs/functions/setImmutable.html +10 -6
- package/docs/functions/sortBy.html +10 -6
- package/docs/functions/sortProps.html +10 -6
- package/docs/functions/stripPrefix.html +10 -6
- package/docs/functions/stripSuffix.html +10 -6
- package/docs/functions/throttle.html +10 -6
- package/docs/functions/truthy.html +10 -6
- package/docs/functions/unique.html +135 -0
- package/docs/functions/wait.html +10 -6
- package/docs/functions/waitFor.html +10 -6
- package/docs/functions/waitSync.html +10 -6
- package/docs/index.html +12 -5
- package/docs/interfaces/ComparePropsOptions.html +70 -0
- package/docs/interfaces/GetMultipleSource.html +10 -6
- package/docs/interfaces/GetSource.html +10 -6
- package/docs/interfaces/IsNumericStringOptions.html +9 -9
- package/docs/interfaces/OccurencesOptions.html +6 -6
- package/docs/interfaces/SetImmutableSource.html +10 -6
- package/docs/interfaces/SetSource.html +10 -6
- package/docs/interfaces/ThrottleOptions.html +7 -7
- package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
- package/docs/modules.html +13 -5
- package/docs/pages/CHANGELOG.html +58 -31
- package/docs/pages/Introduction.html +9 -5
- package/docs/types/MapValuesFn.html +10 -6
- package/docs/types/MatchCallback.html +10 -6
- package/docs/types/SeqEarlyBreaker.html +10 -6
- package/docs/types/SeqFn.html +10 -6
- package/docs/types/SeqFunctions.html +10 -6
- package/docs/types/SetImmutablePath.html +10 -6
- package/docs/types/ThrottledFunction.html +10 -6
- package/docs/variables/mapValuesUNSET.html +10 -6
- package/docs/variables/mergeUNSET.html +10 -6
- package/esm/compareArrays.d.ts +7 -0
- package/esm/compareArrays.d.ts.map +1 -0
- package/esm/compareArrays.js +9 -0
- package/esm/compareArrays.js.map +1 -0
- package/esm/compareProps.d.ts +7 -0
- package/esm/compareProps.d.ts.map +1 -0
- package/esm/compareProps.js +11 -0
- package/esm/compareProps.js.map +1 -0
- package/esm/index.d.ts +3 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +3 -0
- package/esm/index.js.map +1 -1
- package/esm/unique.d.ts +3 -0
- package/esm/unique.d.ts.map +1 -0
- package/esm/unique.js +5 -0
- package/esm/unique.js.map +1 -0
- package/package.json +1 -1
- package/src/compareArrays.spec.ts +64 -0
- package/src/compareArrays.ts +22 -0
- package/src/compareProps.spec.ts +68 -0
- package/src/compareProps.ts +33 -0
- package/src/index.ts +3 -0
- package/src/unique.spec.ts +10 -0
- package/src/unique.ts +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file.
|
|
|
3
3
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
4
4
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
5
5
|
|
|
6
|
+
## [1.6.0] - 2023-05-12
|
|
7
|
+
### Added
|
|
8
|
+
- `compareProps` method
|
|
9
|
+
|
|
10
|
+
## [1.5.0] - 2023-05-12
|
|
11
|
+
### Added
|
|
12
|
+
- `compareArrays` method
|
|
13
|
+
- `unique` method
|
|
14
|
+
|
|
6
15
|
## [1.4.0] - 2023-05-11
|
|
7
16
|
### Added
|
|
8
17
|
- `escapeRegExp` method
|
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ object, with just some properties copied. Easy, right? Few lines of code? Lodash
|
|
|
44
44
|
- `scale` - scale given value from old range to new range
|
|
45
45
|
|
|
46
46
|
### Array related
|
|
47
|
+
- `compareArrays` - compare two arrays
|
|
47
48
|
- `ensureArray` - ensure that given value is an array
|
|
48
49
|
- `insertSeparator` - insert a separator between every character in an array
|
|
49
50
|
- `last` - get last element of an array
|
|
@@ -52,8 +53,10 @@ object, with just some properties copied. Easy, right? Few lines of code? Lodash
|
|
|
52
53
|
- `pull` - remove values from an array (by mutating)
|
|
53
54
|
- `remove` - remove values from an array (by mutating) using predicate function and return removed values
|
|
54
55
|
- `sortBy` - sort an array by given property (create callback function for `Array.prototype.sort`)
|
|
56
|
+
- `unique` - get unique values from an array
|
|
55
57
|
|
|
56
58
|
### Object related
|
|
59
|
+
- `compareProps` - compare two objects and return list of different properties
|
|
57
60
|
- `isPlainObject` - check if given value is a plain object
|
|
58
61
|
- `mapValues` - map values of an object
|
|
59
62
|
- `merge` - merge two objects shallowly, allowing to remove properties while doing so
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"compareArrays.d.ts","sourceRoot":"","sources":["../src/compareArrays.ts"],"names":[],"mappings":"AAWA,QAAA,MAAM,aAAa;;;;CAMlB,CAAC;AAEF,OAAO,EACH,aAAa,GAChB,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.compareArrays = void 0;
|
|
4
|
+
const unique_js_1 = require("./unique.js");
|
|
5
|
+
const compareArrays = (arrayA, arrayB) => {
|
|
6
|
+
const onlyA = (0, unique_js_1.unique)(arrayA.filter((item) => !arrayB.includes(item)));
|
|
7
|
+
const onlyB = (0, unique_js_1.unique)(arrayB.filter((item) => !arrayA.includes(item)));
|
|
8
|
+
const both = (0, unique_js_1.unique)(arrayA.filter((item) => arrayB.includes(item)));
|
|
9
|
+
return { onlyA, onlyB, both };
|
|
10
|
+
};
|
|
11
|
+
exports.compareArrays = compareArrays;
|
|
12
|
+
//# sourceMappingURL=compareArrays.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"compareArrays.js","sourceRoot":"","sources":["../src/compareArrays.ts"],"names":[],"mappings":";;;AAAA,2CAAqC;AAWrC,MAAM,aAAa,GAAG,CAAsB,MAAS,EAAE,MAAS,EAAmC,EAAE;IACjG,MAAM,KAAK,GAAG,IAAA,kBAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACtE,MAAM,KAAK,GAAG,IAAA,kBAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IACtE,MAAM,IAAI,GAAG,IAAA,kBAAM,EAAC,MAAM,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAEpE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAqC,CAAC;AACrE,CAAC,CAAC;AAGE,sCAAa"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface ComparePropsOptions {
|
|
2
|
+
missingEqualsUndefined?: boolean;
|
|
3
|
+
}
|
|
4
|
+
declare const compareProps: <T extends Record<string, unknown>>(a: T, b: T, { missingEqualsUndefined }?: ComparePropsOptions) => string[];
|
|
5
|
+
export { compareProps, };
|
|
6
|
+
export type { ComparePropsOptions, };
|
|
7
|
+
//# sourceMappingURL=compareProps.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"compareProps.d.ts","sourceRoot":"","sources":["../src/compareProps.ts"],"names":[],"mappings":"AAEA,UAAU,mBAAmB;IACzB,sBAAsB,CAAC,EAAE,OAAO,CAAC;CACpC;AAYD,QAAA,MAAM,YAAY,+EAC0B,mBAAmB,KAC5D,MAAM,EAOR,CAAC;AAEF,OAAO,EACH,YAAY,GACf,CAAC;AACF,YAAY,EACR,mBAAmB,GACtB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.compareProps = void 0;
|
|
4
|
+
const unique_js_1 = require("./unique.js");
|
|
5
|
+
const compareProps = (a, b, { missingEqualsUndefined } = {}) => {
|
|
6
|
+
const aKeys = Object.keys(a);
|
|
7
|
+
const bKeys = Object.keys(b);
|
|
8
|
+
const allKeys = (0, unique_js_1.unique)([...aKeys, ...bKeys]);
|
|
9
|
+
return allKeys.filter((key) => {
|
|
10
|
+
return !Object.is(a[key], b[key]) || (!missingEqualsUndefined && key in a !== key in b);
|
|
11
|
+
});
|
|
12
|
+
};
|
|
13
|
+
exports.compareProps = compareProps;
|
|
14
|
+
//# sourceMappingURL=compareProps.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"compareProps.js","sourceRoot":"","sources":["../src/compareProps.ts"],"names":[],"mappings":";;;AAAA,2CAAqC;AAgBrC,MAAM,YAAY,GAAG,CACjB,CAAI,EAAE,CAAI,EAAE,EAAE,sBAAsB,KAA0B,EAAE,EACxD,EAAE;IACV,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC7B,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAC7B,MAAM,OAAO,GAAG,IAAA,kBAAM,EAAC,CAAC,GAAG,KAAK,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC;IAC7C,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE;QAC1B,OAAO,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,CAAC,CAAC,sBAAsB,IAAI,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,CAAC,CAAC;IAC5F,CAAC,CAAC,CAAC;AACP,CAAC,CAAC;AAGE,oCAAY"}
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ export * from "./ensureSuffix.js";
|
|
|
3
3
|
export * from "./cap.js";
|
|
4
4
|
export * from "./capitalize.js";
|
|
5
5
|
export * from "./coalesce.js";
|
|
6
|
+
export * from "./compareArrays.js";
|
|
7
|
+
export * from "./compareProps.js";
|
|
6
8
|
export * from "./ensureArray.js";
|
|
7
9
|
export * from "./ensureDate.js";
|
|
8
10
|
export * from "./ensureError.js";
|
|
@@ -39,6 +41,7 @@ export * from "./stripPrefix.js";
|
|
|
39
41
|
export * from "./stripSuffix.js";
|
|
40
42
|
export * from "./throttle.js";
|
|
41
43
|
export * from "./truthy.js";
|
|
44
|
+
export * from "./unique.js";
|
|
42
45
|
export * from "./wait.js";
|
|
43
46
|
export * from "./waitFor.js";
|
|
44
47
|
export * from "./waitSync.js";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AACjC,cAAc,iBAAiB,CAAC;AAChC,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC;AAClC,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,WAAW,CAAC;AAC1B,cAAc,kBAAkB,CAAC;AACjC,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -19,6 +19,8 @@ __exportStar(require("./ensureSuffix.js"), exports);
|
|
|
19
19
|
__exportStar(require("./cap.js"), exports);
|
|
20
20
|
__exportStar(require("./capitalize.js"), exports);
|
|
21
21
|
__exportStar(require("./coalesce.js"), exports);
|
|
22
|
+
__exportStar(require("./compareArrays.js"), exports);
|
|
23
|
+
__exportStar(require("./compareProps.js"), exports);
|
|
22
24
|
__exportStar(require("./ensureArray.js"), exports);
|
|
23
25
|
__exportStar(require("./ensureDate.js"), exports);
|
|
24
26
|
__exportStar(require("./ensureError.js"), exports);
|
|
@@ -55,6 +57,7 @@ __exportStar(require("./stripPrefix.js"), exports);
|
|
|
55
57
|
__exportStar(require("./stripSuffix.js"), exports);
|
|
56
58
|
__exportStar(require("./throttle.js"), exports);
|
|
57
59
|
__exportStar(require("./truthy.js"), exports);
|
|
60
|
+
__exportStar(require("./unique.js"), exports);
|
|
58
61
|
__exportStar(require("./wait.js"), exports);
|
|
59
62
|
__exportStar(require("./waitFor.js"), exports);
|
|
60
63
|
__exportStar(require("./waitSync.js"), exports);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,oDAAkC;AAClC,oDAAkC;AAClC,2CAAyB;AACzB,kDAAgC;AAChC,gDAA8B;AAC9B,mDAAiC;AACjC,kDAAgC;AAChC,mDAAiC;AACjC,uDAAqC;AACrC,oDAAkC;AAClC,2CAAyB;AACzB,mDAAiC;AACjC,uDAAqC;AACrC,+CAA6B;AAC7B,uDAAqC;AACrC,qDAAmC;AACnC,4CAA0B;AAC1B,gDAA8B;AAC9B,iDAA+B;AAC/B,6CAA2B;AAC3B,6CAA2B;AAC3B,oDAAkC;AAClC,4CAA0B;AAC1B,mDAAiC;AACjC,4CAA0B;AAC1B,4CAA0B;AAC1B,4CAA0B;AAC1B,8CAA4B;AAC5B,+CAA6B;AAC7B,+CAA6B;AAC7B,4CAA0B;AAC1B,6CAA2B;AAC3B,2CAAyB;AACzB,2CAAyB;AACzB,oDAAkC;AAClC,8CAA4B;AAC5B,iDAA+B;AAC/B,mDAAiC;AACjC,mDAAiC;AACjC,gDAA8B;AAC9B,8CAA4B;AAC5B,4CAA0B;AAC1B,+CAA6B;AAC7B,gDAA8B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,oDAAkC;AAClC,oDAAkC;AAClC,2CAAyB;AACzB,kDAAgC;AAChC,gDAA8B;AAC9B,qDAAmC;AACnC,oDAAkC;AAClC,mDAAiC;AACjC,kDAAgC;AAChC,mDAAiC;AACjC,uDAAqC;AACrC,oDAAkC;AAClC,2CAAyB;AACzB,mDAAiC;AACjC,uDAAqC;AACrC,+CAA6B;AAC7B,uDAAqC;AACrC,qDAAmC;AACnC,4CAA0B;AAC1B,gDAA8B;AAC9B,iDAA+B;AAC/B,6CAA2B;AAC3B,6CAA2B;AAC3B,oDAAkC;AAClC,4CAA0B;AAC1B,mDAAiC;AACjC,4CAA0B;AAC1B,4CAA0B;AAC1B,4CAA0B;AAC1B,8CAA4B;AAC5B,+CAA6B;AAC7B,+CAA6B;AAC7B,4CAA0B;AAC1B,6CAA2B;AAC3B,2CAAyB;AACzB,2CAAyB;AACzB,oDAAkC;AAClC,8CAA4B;AAC5B,iDAA+B;AAC/B,mDAAiC;AACjC,mDAAiC;AACjC,gDAA8B;AAC9B,8CAA4B;AAC5B,8CAA4B;AAC5B,4CAA0B;AAC1B,+CAA6B;AAC7B,gDAA8B"}
|
package/dist/unique.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unique.d.ts","sourceRoot":"","sources":["../src/unique.ts"],"names":[],"mappings":"AAKA,QAAA,MAAM,MAAM,oCAEX,CAAC;AAEF,OAAO,EACH,MAAM,GACT,CAAC"}
|
package/dist/unique.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unique.js","sourceRoot":"","sources":["../src/unique.ts"],"names":[],"mappings":";;;AAKA,MAAM,MAAM,GAAG,CAAsB,GAAM,EAAK,EAAE;IAC9C,OAAO,CAAC,GAAG,IAAI,GAAG,CAAC,GAAG,CAAC,CAAM,CAAC;AAClC,CAAC,CAAC;AAGE,wBAAM"}
|
package/docs/assets/search.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
window.searchData = JSON.parse("{\"kinds\":{\"32\":\"Variable\",\"64\":\"Function\",\"256\":\"Interface\",\"1024\":\"Property\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\",\"33554432\":\"@knodes/typedoc-plugin-pages: page\"},\"rows\":[{\"kind\":64,\"name\":\"ensurePrefix\",\"url\":\"functions/ensurePrefix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureSuffix\",\"url\":\"functions/ensureSuffix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"cap\",\"url\":\"functions/cap.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"capitalize\",\"url\":\"functions/capitalize.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"coalesce\",\"url\":\"functions/coalesce.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureArray\",\"url\":\"functions/ensureArray.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureDate\",\"url\":\"functions/ensureDate.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureError\",\"url\":\"functions/ensureError.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureTimestamp\",\"url\":\"functions/ensureTimestamp.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"escapeRegExp\",\"url\":\"functions/escapeRegExp.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"get\",\"url\":\"functions/get.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"GetSource\",\"url\":\"interfaces/GetSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"getMultiple\",\"url\":\"functions/getMultiple.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"GetMultipleSource\",\"url\":\"interfaces/GetMultipleSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"insertSeparator\",\"url\":\"functions/insertSeparator.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"isEmpty\",\"url\":\"functions/isEmpty.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"isNumericString\",\"url\":\"functions/isNumericString.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"IsNumericStringOptions\",\"url\":\"interfaces/IsNumericStringOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"allowFloats\",\"url\":\"interfaces/IsNumericStringOptions.html#allowFloats\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowExponents\",\"url\":\"interfaces/IsNumericStringOptions.html#allowExponents\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowInfinity\",\"url\":\"interfaces/IsNumericStringOptions.html#allowInfinity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowNaN\",\"url\":\"interfaces/IsNumericStringOptions.html#allowNaN\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":64,\"name\":\"isPlainObject\",\"url\":\"functions/isPlainObject.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"last\",\"url\":\"functions/last.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"mapAsync\",\"url\":\"functions/mapAsync.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"mapValues\",\"url\":\"functions/mapValues.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":32,\"name\":\"mapValuesUNSET\",\"url\":\"variables/mapValuesUNSET.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/mapValuesUNSET.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"mapValuesUNSET\"},{\"kind\":4194304,\"name\":\"MapValuesFn\",\"url\":\"types/MapValuesFn.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapValuesFn.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapValuesFn\"},{\"kind\":64,\"name\":\"match\",\"url\":\"functions/match.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/match.html#match.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"match.match\"},{\"kind\":1024,\"name\":\"matched\",\"url\":\"functions/match.html#match.__type.matched\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"match.match.__type\"},{\"kind\":1024,\"name\":\"unmatched\",\"url\":\"functions/match.html#match.__type.unmatched\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"match.match.__type\"},{\"kind\":4194304,\"name\":\"MatchCallback\",\"url\":\"types/MatchCallback.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MatchCallback.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MatchCallback\"},{\"kind\":64,\"name\":\"merge\",\"url\":\"functions/merge.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":32,\"name\":\"mergeUNSET\",\"url\":\"variables/mergeUNSET.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/mergeUNSET.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"mergeUNSET\"},{\"kind\":64,\"name\":\"mostFrequent\",\"url\":\"functions/mostFrequent.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"noop\",\"url\":\"functions/noop.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"occurrences\",\"url\":\"functions/occurrences.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"OccurencesOptions\",\"url\":\"interfaces/OccurencesOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"overlap\",\"url\":\"interfaces/OccurencesOptions.html#overlap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OccurencesOptions\"},{\"kind\":64,\"name\":\"omit\",\"url\":\"functions/omit.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"pick\",\"url\":\"functions/pick.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"pull\",\"url\":\"functions/pull.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"remove\",\"url\":\"functions/remove.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"replace\",\"url\":\"functions/replace.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"rethrow\",\"url\":\"functions/rethrow.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"safe\",\"url\":\"functions/safe.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"scale\",\"url\":\"functions/scale.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"seq\",\"url\":\"functions/seq.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"seqEarlyBreak\",\"url\":\"functions/seqEarlyBreak.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"SeqEarlyBreaker\",\"url\":\"types/SeqEarlyBreaker.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SeqEarlyBreaker.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SeqEarlyBreaker\"},{\"kind\":4194304,\"name\":\"SeqFunctions\",\"url\":\"types/SeqFunctions.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":4194304,\"name\":\"SeqFn\",\"url\":\"types/SeqFn.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SeqFn.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SeqFn\"},{\"kind\":64,\"name\":\"set\",\"url\":\"functions/set.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"SetSource\",\"url\":\"interfaces/SetSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"setImmutable\",\"url\":\"functions/setImmutable.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"SetImmutablePath\",\"url\":\"types/SetImmutablePath.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":256,\"name\":\"SetImmutableSource\",\"url\":\"interfaces/SetImmutableSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"sortBy\",\"url\":\"functions/sortBy.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/sortBy.html#sortBy.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"sortBy.sortBy\"},{\"kind\":64,\"name\":\"sortProps\",\"url\":\"functions/sortProps.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"stripPrefix\",\"url\":\"functions/stripPrefix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"stripSuffix\",\"url\":\"functions/stripSuffix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"throttle\",\"url\":\"functions/throttle.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"ThrottledFunctionExtras\",\"url\":\"interfaces/ThrottledFunctionExtras.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"cancel\",\"url\":\"interfaces/ThrottledFunctionExtras.html#cancel\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottledFunctionExtras\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ThrottledFunctionExtras.html#cancel.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ThrottledFunctionExtras.cancel\"},{\"kind\":1024,\"name\":\"flush\",\"url\":\"interfaces/ThrottledFunctionExtras.html#flush\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottledFunctionExtras\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ThrottledFunctionExtras.html#flush.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ThrottledFunctionExtras.flush\"},{\"kind\":256,\"name\":\"ThrottleOptions\",\"url\":\"interfaces/ThrottleOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"leading\",\"url\":\"interfaces/ThrottleOptions.html#leading\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottleOptions\"},{\"kind\":1024,\"name\":\"trailing\",\"url\":\"interfaces/ThrottleOptions.html#trailing\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottleOptions\"},{\"kind\":4194304,\"name\":\"ThrottledFunction\",\"url\":\"types/ThrottledFunction.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ThrottledFunction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ThrottledFunction\"},{\"kind\":64,\"name\":\"truthy\",\"url\":\"functions/truthy.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"wait\",\"url\":\"functions/wait.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"waitFor\",\"url\":\"functions/waitFor.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"waitSync\",\"url\":\"functions/waitSync.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":33554432,\"name\":\"Introduction\",\"url\":\"pages/Introduction.html\",\"classes\":\"pages-entry pages-entry-page\"},{\"kind\":33554432,\"name\":\"Changelog\",\"url\":\"pages/CHANGELOG.html\",\"classes\":\"pages-entry pages-entry-page\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,40.604]],[\"comment/0\",[]],[\"name/1\",[1,40.604]],[\"comment/1\",[]],[\"name/2\",[2,40.604]],[\"comment/2\",[]],[\"name/3\",[3,40.604]],[\"comment/3\",[]],[\"name/4\",[4,40.604]],[\"comment/4\",[]],[\"name/5\",[5,40.604]],[\"comment/5\",[]],[\"name/6\",[6,40.604]],[\"comment/6\",[]],[\"name/7\",[7,40.604]],[\"comment/7\",[]],[\"name/8\",[8,40.604]],[\"comment/8\",[]],[\"name/9\",[9,40.604]],[\"comment/9\",[]],[\"name/10\",[10,40.604]],[\"comment/10\",[]],[\"name/11\",[11,40.604]],[\"comment/11\",[]],[\"name/12\",[12,40.604]],[\"comment/12\",[]],[\"name/13\",[13,40.604]],[\"comment/13\",[]],[\"name/14\",[14,40.604]],[\"comment/14\",[]],[\"name/15\",[15,40.604]],[\"comment/15\",[]],[\"name/16\",[16,40.604]],[\"comment/16\",[]],[\"name/17\",[17,40.604]],[\"comment/17\",[]],[\"name/18\",[18,40.604]],[\"comment/18\",[]],[\"name/19\",[19,40.604]],[\"comment/19\",[]],[\"name/20\",[20,40.604]],[\"comment/20\",[]],[\"name/21\",[21,40.604]],[\"comment/21\",[]],[\"name/22\",[22,40.604]],[\"comment/22\",[]],[\"name/23\",[23,40.604]],[\"comment/23\",[]],[\"name/24\",[24,40.604]],[\"comment/24\",[]],[\"name/25\",[25,40.604]],[\"comment/25\",[]],[\"name/26\",[26,40.604]],[\"comment/26\",[]],[\"name/27\",[27,20.236]],[\"comment/27\",[]],[\"name/28\",[28,40.604]],[\"comment/28\",[]],[\"name/29\",[27,20.236]],[\"comment/29\",[]],[\"name/30\",[29,40.604]],[\"comment/30\",[]],[\"name/31\",[27,20.236]],[\"comment/31\",[]],[\"name/32\",[30,40.604]],[\"comment/32\",[]],[\"name/33\",[31,40.604]],[\"comment/33\",[]],[\"name/34\",[32,40.604]],[\"comment/34\",[]],[\"name/35\",[27,20.236]],[\"comment/35\",[]],[\"name/36\",[33,40.604]],[\"comment/36\",[]],[\"name/37\",[34,40.604]],[\"comment/37\",[]],[\"name/38\",[27,20.236]],[\"comment/38\",[]],[\"name/39\",[35,40.604]],[\"comment/39\",[]],[\"name/40\",[36,40.604]],[\"comment/40\",[]],[\"name/41\",[37,40.604]],[\"comment/41\",[]],[\"name/42\",[38,40.604]],[\"comment/42\",[]],[\"name/43\",[39,40.604]],[\"comment/43\",[]],[\"name/44\",[40,40.604]],[\"comment/44\",[]],[\"name/45\",[41,40.604]],[\"comment/45\",[]],[\"name/46\",[42,40.604]],[\"comment/46\",[]],[\"name/47\",[43,40.604]],[\"comment/47\",[]],[\"name/48\",[44,40.604]],[\"comment/48\",[]],[\"name/49\",[45,40.604]],[\"comment/49\",[]],[\"name/50\",[46,40.604]],[\"comment/50\",[]],[\"name/51\",[47,40.604]],[\"comment/51\",[]],[\"name/52\",[48,40.604]],[\"comment/52\",[]],[\"name/53\",[49,40.604]],[\"comment/53\",[]],[\"name/54\",[50,40.604]],[\"comment/54\",[]],[\"name/55\",[27,20.236]],[\"comment/55\",[]],[\"name/56\",[51,40.604]],[\"comment/56\",[]],[\"name/57\",[52,40.604]],[\"comment/57\",[]],[\"name/58\",[27,20.236]],[\"comment/58\",[]],[\"name/59\",[53,40.604]],[\"comment/59\",[]],[\"name/60\",[54,40.604]],[\"comment/60\",[]],[\"name/61\",[55,40.604]],[\"comment/61\",[]],[\"name/62\",[56,40.604]],[\"comment/62\",[]],[\"name/63\",[57,40.604]],[\"comment/63\",[]],[\"name/64\",[58,40.604]],[\"comment/64\",[]],[\"name/65\",[27,20.236]],[\"comment/65\",[]],[\"name/66\",[59,40.604]],[\"comment/66\",[]],[\"name/67\",[60,40.604]],[\"comment/67\",[]],[\"name/68\",[61,40.604]],[\"comment/68\",[]],[\"name/69\",[62,40.604]],[\"comment/69\",[]],[\"name/70\",[63,40.604]],[\"comment/70\",[]],[\"name/71\",[64,40.604]],[\"comment/71\",[]],[\"name/72\",[27,20.236]],[\"comment/72\",[]],[\"name/73\",[65,40.604]],[\"comment/73\",[]],[\"name/74\",[27,20.236]],[\"comment/74\",[]],[\"name/75\",[66,40.604]],[\"comment/75\",[]],[\"name/76\",[67,40.604]],[\"comment/76\",[]],[\"name/77\",[68,40.604]],[\"comment/77\",[]],[\"name/78\",[69,40.604]],[\"comment/78\",[]],[\"name/79\",[27,20.236]],[\"comment/79\",[]],[\"name/80\",[70,40.604]],[\"comment/80\",[]],[\"name/81\",[71,40.604]],[\"comment/81\",[]],[\"name/82\",[72,40.604]],[\"comment/82\",[]],[\"name/83\",[73,40.604]],[\"comment/83\",[]],[\"name/84\",[74,40.604]],[\"comment/84\",[]],[\"name/85\",[75,40.604]],[\"comment/85\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":27,\"name\":{\"27\":{},\"29\":{},\"31\":{},\"35\":{},\"38\":{},\"55\":{},\"58\":{},\"65\":{},\"72\":{},\"74\":{},\"79\":{}},\"comment\":{}}],[\"allowexponents\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"allowfloats\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"allowinfinity\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"allownan\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"cancel\",{\"_index\":64,\"name\":{\"71\":{}},\"comment\":{}}],[\"cap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"changelog\",{\"_index\":75,\"name\":{\"85\":{}},\"comment\":{}}],[\"coalesce\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"ensurearray\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"ensuredate\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"ensureerror\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"ensureprefix\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"ensuresuffix\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"ensuretimestamp\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"escaperegexp\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"flush\",{\"_index\":65,\"name\":{\"73\":{}},\"comment\":{}}],[\"get\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"getmultiple\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"getmultiplesource\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"getsource\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"insertseparator\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"introduction\",{\"_index\":74,\"name\":{\"84\":{}},\"comment\":{}}],[\"isempty\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"isnumericstring\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"isnumericstringoptions\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"isplainobject\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"last\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"leading\",{\"_index\":67,\"name\":{\"76\":{}},\"comment\":{}}],[\"mapasync\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"mapvalues\",{\"_index\":25,\"name\":{\"25\":{}},\"comment\":{}}],[\"mapvaluesfn\",{\"_index\":28,\"name\":{\"28\":{}},\"comment\":{}}],[\"mapvaluesunset\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"match\",{\"_index\":29,\"name\":{\"30\":{}},\"comment\":{}}],[\"matchcallback\",{\"_index\":32,\"name\":{\"34\":{}},\"comment\":{}}],[\"matched\",{\"_index\":30,\"name\":{\"32\":{}},\"comment\":{}}],[\"merge\",{\"_index\":33,\"name\":{\"36\":{}},\"comment\":{}}],[\"mergeunset\",{\"_index\":34,\"name\":{\"37\":{}},\"comment\":{}}],[\"mostfrequent\",{\"_index\":35,\"name\":{\"39\":{}},\"comment\":{}}],[\"noop\",{\"_index\":36,\"name\":{\"40\":{}},\"comment\":{}}],[\"occurencesoptions\",{\"_index\":38,\"name\":{\"42\":{}},\"comment\":{}}],[\"occurrences\",{\"_index\":37,\"name\":{\"41\":{}},\"comment\":{}}],[\"omit\",{\"_index\":40,\"name\":{\"44\":{}},\"comment\":{}}],[\"overlap\",{\"_index\":39,\"name\":{\"43\":{}},\"comment\":{}}],[\"pick\",{\"_index\":41,\"name\":{\"45\":{}},\"comment\":{}}],[\"pull\",{\"_index\":42,\"name\":{\"46\":{}},\"comment\":{}}],[\"remove\",{\"_index\":43,\"name\":{\"47\":{}},\"comment\":{}}],[\"replace\",{\"_index\":44,\"name\":{\"48\":{}},\"comment\":{}}],[\"rethrow\",{\"_index\":45,\"name\":{\"49\":{}},\"comment\":{}}],[\"safe\",{\"_index\":46,\"name\":{\"50\":{}},\"comment\":{}}],[\"scale\",{\"_index\":47,\"name\":{\"51\":{}},\"comment\":{}}],[\"seq\",{\"_index\":48,\"name\":{\"52\":{}},\"comment\":{}}],[\"seqearlybreak\",{\"_index\":49,\"name\":{\"53\":{}},\"comment\":{}}],[\"seqearlybreaker\",{\"_index\":50,\"name\":{\"54\":{}},\"comment\":{}}],[\"seqfn\",{\"_index\":52,\"name\":{\"57\":{}},\"comment\":{}}],[\"seqfunctions\",{\"_index\":51,\"name\":{\"56\":{}},\"comment\":{}}],[\"set\",{\"_index\":53,\"name\":{\"59\":{}},\"comment\":{}}],[\"setimmutable\",{\"_index\":55,\"name\":{\"61\":{}},\"comment\":{}}],[\"setimmutablepath\",{\"_index\":56,\"name\":{\"62\":{}},\"comment\":{}}],[\"setimmutablesource\",{\"_index\":57,\"name\":{\"63\":{}},\"comment\":{}}],[\"setsource\",{\"_index\":54,\"name\":{\"60\":{}},\"comment\":{}}],[\"sortby\",{\"_index\":58,\"name\":{\"64\":{}},\"comment\":{}}],[\"sortprops\",{\"_index\":59,\"name\":{\"66\":{}},\"comment\":{}}],[\"stripprefix\",{\"_index\":60,\"name\":{\"67\":{}},\"comment\":{}}],[\"stripsuffix\",{\"_index\":61,\"name\":{\"68\":{}},\"comment\":{}}],[\"throttle\",{\"_index\":62,\"name\":{\"69\":{}},\"comment\":{}}],[\"throttledfunction\",{\"_index\":69,\"name\":{\"78\":{}},\"comment\":{}}],[\"throttledfunctionextras\",{\"_index\":63,\"name\":{\"70\":{}},\"comment\":{}}],[\"throttleoptions\",{\"_index\":66,\"name\":{\"75\":{}},\"comment\":{}}],[\"trailing\",{\"_index\":68,\"name\":{\"77\":{}},\"comment\":{}}],[\"truthy\",{\"_index\":70,\"name\":{\"80\":{}},\"comment\":{}}],[\"unmatched\",{\"_index\":31,\"name\":{\"33\":{}},\"comment\":{}}],[\"wait\",{\"_index\":71,\"name\":{\"81\":{}},\"comment\":{}}],[\"waitfor\",{\"_index\":72,\"name\":{\"82\":{}},\"comment\":{}}],[\"waitsync\",{\"_index\":73,\"name\":{\"83\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
|
|
1
|
+
window.searchData = JSON.parse("{\"kinds\":{\"32\":\"Variable\",\"64\":\"Function\",\"256\":\"Interface\",\"1024\":\"Property\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\",\"33554432\":\"@knodes/typedoc-plugin-pages: page\"},\"rows\":[{\"kind\":64,\"name\":\"ensurePrefix\",\"url\":\"functions/ensurePrefix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureSuffix\",\"url\":\"functions/ensureSuffix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"cap\",\"url\":\"functions/cap.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"capitalize\",\"url\":\"functions/capitalize.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"coalesce\",\"url\":\"functions/coalesce.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"compareArrays\",\"url\":\"functions/compareArrays.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/compareArrays.html#compareArrays.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"compareArrays.compareArrays\"},{\"kind\":1024,\"name\":\"onlyA\",\"url\":\"functions/compareArrays.html#compareArrays.__type.onlyA\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"compareArrays.compareArrays.__type\"},{\"kind\":1024,\"name\":\"onlyB\",\"url\":\"functions/compareArrays.html#compareArrays.__type.onlyB\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"compareArrays.compareArrays.__type\"},{\"kind\":1024,\"name\":\"both\",\"url\":\"functions/compareArrays.html#compareArrays.__type.both\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"compareArrays.compareArrays.__type\"},{\"kind\":64,\"name\":\"compareProps\",\"url\":\"functions/compareProps.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"ComparePropsOptions\",\"url\":\"interfaces/ComparePropsOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"missingEqualsUndefined\",\"url\":\"interfaces/ComparePropsOptions.html#missingEqualsUndefined\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ComparePropsOptions\"},{\"kind\":64,\"name\":\"ensureArray\",\"url\":\"functions/ensureArray.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureDate\",\"url\":\"functions/ensureDate.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureError\",\"url\":\"functions/ensureError.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"ensureTimestamp\",\"url\":\"functions/ensureTimestamp.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"escapeRegExp\",\"url\":\"functions/escapeRegExp.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"get\",\"url\":\"functions/get.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"GetSource\",\"url\":\"interfaces/GetSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"getMultiple\",\"url\":\"functions/getMultiple.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"GetMultipleSource\",\"url\":\"interfaces/GetMultipleSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"insertSeparator\",\"url\":\"functions/insertSeparator.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"isEmpty\",\"url\":\"functions/isEmpty.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"isNumericString\",\"url\":\"functions/isNumericString.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"IsNumericStringOptions\",\"url\":\"interfaces/IsNumericStringOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"allowFloats\",\"url\":\"interfaces/IsNumericStringOptions.html#allowFloats\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowExponents\",\"url\":\"interfaces/IsNumericStringOptions.html#allowExponents\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowInfinity\",\"url\":\"interfaces/IsNumericStringOptions.html#allowInfinity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":1024,\"name\":\"allowNaN\",\"url\":\"interfaces/IsNumericStringOptions.html#allowNaN\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"IsNumericStringOptions\"},{\"kind\":64,\"name\":\"isPlainObject\",\"url\":\"functions/isPlainObject.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"last\",\"url\":\"functions/last.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"mapAsync\",\"url\":\"functions/mapAsync.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"mapValues\",\"url\":\"functions/mapValues.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":32,\"name\":\"mapValuesUNSET\",\"url\":\"variables/mapValuesUNSET.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/mapValuesUNSET.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"mapValuesUNSET\"},{\"kind\":4194304,\"name\":\"MapValuesFn\",\"url\":\"types/MapValuesFn.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MapValuesFn.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MapValuesFn\"},{\"kind\":64,\"name\":\"match\",\"url\":\"functions/match.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/match.html#match.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"match.match\"},{\"kind\":1024,\"name\":\"matched\",\"url\":\"functions/match.html#match.__type.matched\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"match.match.__type\"},{\"kind\":1024,\"name\":\"unmatched\",\"url\":\"functions/match.html#match.__type.unmatched\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"match.match.__type\"},{\"kind\":4194304,\"name\":\"MatchCallback\",\"url\":\"types/MatchCallback.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/MatchCallback.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"MatchCallback\"},{\"kind\":64,\"name\":\"merge\",\"url\":\"functions/merge.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":32,\"name\":\"mergeUNSET\",\"url\":\"variables/mergeUNSET.html\",\"classes\":\"tsd-kind-variable\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"variables/mergeUNSET.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-variable\",\"parent\":\"mergeUNSET\"},{\"kind\":64,\"name\":\"mostFrequent\",\"url\":\"functions/mostFrequent.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"noop\",\"url\":\"functions/noop.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"occurrences\",\"url\":\"functions/occurrences.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"OccurencesOptions\",\"url\":\"interfaces/OccurencesOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"overlap\",\"url\":\"interfaces/OccurencesOptions.html#overlap\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"OccurencesOptions\"},{\"kind\":64,\"name\":\"omit\",\"url\":\"functions/omit.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"pick\",\"url\":\"functions/pick.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"pull\",\"url\":\"functions/pull.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"remove\",\"url\":\"functions/remove.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"replace\",\"url\":\"functions/replace.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"rethrow\",\"url\":\"functions/rethrow.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"safe\",\"url\":\"functions/safe.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"scale\",\"url\":\"functions/scale.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"seq\",\"url\":\"functions/seq.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"seqEarlyBreak\",\"url\":\"functions/seqEarlyBreak.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"SeqEarlyBreaker\",\"url\":\"types/SeqEarlyBreaker.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SeqEarlyBreaker.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SeqEarlyBreaker\"},{\"kind\":4194304,\"name\":\"SeqFunctions\",\"url\":\"types/SeqFunctions.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":4194304,\"name\":\"SeqFn\",\"url\":\"types/SeqFn.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/SeqFn.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"SeqFn\"},{\"kind\":64,\"name\":\"set\",\"url\":\"functions/set.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"SetSource\",\"url\":\"interfaces/SetSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"setImmutable\",\"url\":\"functions/setImmutable.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":4194304,\"name\":\"SetImmutablePath\",\"url\":\"types/SetImmutablePath.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":256,\"name\":\"SetImmutableSource\",\"url\":\"interfaces/SetImmutableSource.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":64,\"name\":\"sortBy\",\"url\":\"functions/sortBy.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"functions/sortBy.html#sortBy.__type\",\"classes\":\"tsd-kind-type-literal\",\"parent\":\"sortBy.sortBy\"},{\"kind\":64,\"name\":\"sortProps\",\"url\":\"functions/sortProps.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"stripPrefix\",\"url\":\"functions/stripPrefix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"stripSuffix\",\"url\":\"functions/stripSuffix.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"throttle\",\"url\":\"functions/throttle.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":256,\"name\":\"ThrottledFunctionExtras\",\"url\":\"interfaces/ThrottledFunctionExtras.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"cancel\",\"url\":\"interfaces/ThrottledFunctionExtras.html#cancel\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottledFunctionExtras\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ThrottledFunctionExtras.html#cancel.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ThrottledFunctionExtras.cancel\"},{\"kind\":1024,\"name\":\"flush\",\"url\":\"interfaces/ThrottledFunctionExtras.html#flush\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottledFunctionExtras\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ThrottledFunctionExtras.html#flush.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-property\",\"parent\":\"ThrottledFunctionExtras.flush\"},{\"kind\":256,\"name\":\"ThrottleOptions\",\"url\":\"interfaces/ThrottleOptions.html\",\"classes\":\"tsd-kind-interface\"},{\"kind\":1024,\"name\":\"leading\",\"url\":\"interfaces/ThrottleOptions.html#leading\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottleOptions\"},{\"kind\":1024,\"name\":\"trailing\",\"url\":\"interfaces/ThrottleOptions.html#trailing\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThrottleOptions\"},{\"kind\":4194304,\"name\":\"ThrottledFunction\",\"url\":\"types/ThrottledFunction.html\",\"classes\":\"tsd-kind-type-alias\"},{\"kind\":65536,\"name\":\"__type\",\"url\":\"types/ThrottledFunction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"ThrottledFunction\"},{\"kind\":64,\"name\":\"truthy\",\"url\":\"functions/truthy.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"unique\",\"url\":\"functions/unique.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"wait\",\"url\":\"functions/wait.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"waitFor\",\"url\":\"functions/waitFor.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":64,\"name\":\"waitSync\",\"url\":\"functions/waitSync.html\",\"classes\":\"tsd-kind-function\"},{\"kind\":33554432,\"name\":\"Introduction\",\"url\":\"pages/Introduction.html\",\"classes\":\"pages-entry pages-entry-page\"},{\"kind\":33554432,\"name\":\"Changelog\",\"url\":\"pages/CHANGELOG.html\",\"classes\":\"pages-entry pages-entry-page\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,41.589]],[\"comment/0\",[]],[\"name/1\",[1,41.589]],[\"comment/1\",[]],[\"name/2\",[2,41.589]],[\"comment/2\",[]],[\"name/3\",[3,41.589]],[\"comment/3\",[]],[\"name/4\",[4,41.589]],[\"comment/4\",[]],[\"name/5\",[5,41.589]],[\"comment/5\",[]],[\"name/6\",[6,20.386]],[\"comment/6\",[]],[\"name/7\",[7,41.589]],[\"comment/7\",[]],[\"name/8\",[8,41.589]],[\"comment/8\",[]],[\"name/9\",[9,41.589]],[\"comment/9\",[]],[\"name/10\",[10,41.589]],[\"comment/10\",[]],[\"name/11\",[11,41.589]],[\"comment/11\",[]],[\"name/12\",[12,41.589]],[\"comment/12\",[]],[\"name/13\",[13,41.589]],[\"comment/13\",[]],[\"name/14\",[14,41.589]],[\"comment/14\",[]],[\"name/15\",[15,41.589]],[\"comment/15\",[]],[\"name/16\",[16,41.589]],[\"comment/16\",[]],[\"name/17\",[17,41.589]],[\"comment/17\",[]],[\"name/18\",[18,41.589]],[\"comment/18\",[]],[\"name/19\",[19,41.589]],[\"comment/19\",[]],[\"name/20\",[20,41.589]],[\"comment/20\",[]],[\"name/21\",[21,41.589]],[\"comment/21\",[]],[\"name/22\",[22,41.589]],[\"comment/22\",[]],[\"name/23\",[23,41.589]],[\"comment/23\",[]],[\"name/24\",[24,41.589]],[\"comment/24\",[]],[\"name/25\",[25,41.589]],[\"comment/25\",[]],[\"name/26\",[26,41.589]],[\"comment/26\",[]],[\"name/27\",[27,41.589]],[\"comment/27\",[]],[\"name/28\",[28,41.589]],[\"comment/28\",[]],[\"name/29\",[29,41.589]],[\"comment/29\",[]],[\"name/30\",[30,41.589]],[\"comment/30\",[]],[\"name/31\",[31,41.589]],[\"comment/31\",[]],[\"name/32\",[32,41.589]],[\"comment/32\",[]],[\"name/33\",[33,41.589]],[\"comment/33\",[]],[\"name/34\",[34,41.589]],[\"comment/34\",[]],[\"name/35\",[6,20.386]],[\"comment/35\",[]],[\"name/36\",[35,41.589]],[\"comment/36\",[]],[\"name/37\",[6,20.386]],[\"comment/37\",[]],[\"name/38\",[36,41.589]],[\"comment/38\",[]],[\"name/39\",[6,20.386]],[\"comment/39\",[]],[\"name/40\",[37,41.589]],[\"comment/40\",[]],[\"name/41\",[38,41.589]],[\"comment/41\",[]],[\"name/42\",[39,41.589]],[\"comment/42\",[]],[\"name/43\",[6,20.386]],[\"comment/43\",[]],[\"name/44\",[40,41.589]],[\"comment/44\",[]],[\"name/45\",[41,41.589]],[\"comment/45\",[]],[\"name/46\",[6,20.386]],[\"comment/46\",[]],[\"name/47\",[42,41.589]],[\"comment/47\",[]],[\"name/48\",[43,41.589]],[\"comment/48\",[]],[\"name/49\",[44,41.589]],[\"comment/49\",[]],[\"name/50\",[45,41.589]],[\"comment/50\",[]],[\"name/51\",[46,41.589]],[\"comment/51\",[]],[\"name/52\",[47,41.589]],[\"comment/52\",[]],[\"name/53\",[48,41.589]],[\"comment/53\",[]],[\"name/54\",[49,41.589]],[\"comment/54\",[]],[\"name/55\",[50,41.589]],[\"comment/55\",[]],[\"name/56\",[51,41.589]],[\"comment/56\",[]],[\"name/57\",[52,41.589]],[\"comment/57\",[]],[\"name/58\",[53,41.589]],[\"comment/58\",[]],[\"name/59\",[54,41.589]],[\"comment/59\",[]],[\"name/60\",[55,41.589]],[\"comment/60\",[]],[\"name/61\",[56,41.589]],[\"comment/61\",[]],[\"name/62\",[57,41.589]],[\"comment/62\",[]],[\"name/63\",[6,20.386]],[\"comment/63\",[]],[\"name/64\",[58,41.589]],[\"comment/64\",[]],[\"name/65\",[59,41.589]],[\"comment/65\",[]],[\"name/66\",[6,20.386]],[\"comment/66\",[]],[\"name/67\",[60,41.589]],[\"comment/67\",[]],[\"name/68\",[61,41.589]],[\"comment/68\",[]],[\"name/69\",[62,41.589]],[\"comment/69\",[]],[\"name/70\",[63,41.589]],[\"comment/70\",[]],[\"name/71\",[64,41.589]],[\"comment/71\",[]],[\"name/72\",[65,41.589]],[\"comment/72\",[]],[\"name/73\",[6,20.386]],[\"comment/73\",[]],[\"name/74\",[66,41.589]],[\"comment/74\",[]],[\"name/75\",[67,41.589]],[\"comment/75\",[]],[\"name/76\",[68,41.589]],[\"comment/76\",[]],[\"name/77\",[69,41.589]],[\"comment/77\",[]],[\"name/78\",[70,41.589]],[\"comment/78\",[]],[\"name/79\",[71,41.589]],[\"comment/79\",[]],[\"name/80\",[6,20.386]],[\"comment/80\",[]],[\"name/81\",[72,41.589]],[\"comment/81\",[]],[\"name/82\",[6,20.386]],[\"comment/82\",[]],[\"name/83\",[73,41.589]],[\"comment/83\",[]],[\"name/84\",[74,41.589]],[\"comment/84\",[]],[\"name/85\",[75,41.589]],[\"comment/85\",[]],[\"name/86\",[76,41.589]],[\"comment/86\",[]],[\"name/87\",[6,20.386]],[\"comment/87\",[]],[\"name/88\",[77,41.589]],[\"comment/88\",[]],[\"name/89\",[78,41.589]],[\"comment/89\",[]],[\"name/90\",[79,41.589]],[\"comment/90\",[]],[\"name/91\",[80,41.589]],[\"comment/91\",[]],[\"name/92\",[81,41.589]],[\"comment/92\",[]],[\"name/93\",[82,41.589]],[\"comment/93\",[]],[\"name/94\",[83,41.589]],[\"comment/94\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":6,\"name\":{\"6\":{},\"35\":{},\"37\":{},\"39\":{},\"43\":{},\"46\":{},\"63\":{},\"66\":{},\"73\":{},\"80\":{},\"82\":{},\"87\":{}},\"comment\":{}}],[\"allowexponents\",{\"_index\":27,\"name\":{\"27\":{}},\"comment\":{}}],[\"allowfloats\",{\"_index\":26,\"name\":{\"26\":{}},\"comment\":{}}],[\"allowinfinity\",{\"_index\":28,\"name\":{\"28\":{}},\"comment\":{}}],[\"allownan\",{\"_index\":29,\"name\":{\"29\":{}},\"comment\":{}}],[\"both\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"cancel\",{\"_index\":71,\"name\":{\"79\":{}},\"comment\":{}}],[\"cap\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"changelog\",{\"_index\":83,\"name\":{\"94\":{}},\"comment\":{}}],[\"coalesce\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"comparearrays\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"compareprops\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"comparepropsoptions\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"ensurearray\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"ensuredate\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"ensureerror\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"ensureprefix\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"ensuresuffix\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"ensuretimestamp\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"escaperegexp\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"flush\",{\"_index\":72,\"name\":{\"81\":{}},\"comment\":{}}],[\"get\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"getmultiple\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"getmultiplesource\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"getsource\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"insertseparator\",{\"_index\":22,\"name\":{\"22\":{}},\"comment\":{}}],[\"introduction\",{\"_index\":82,\"name\":{\"93\":{}},\"comment\":{}}],[\"isempty\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"isnumericstring\",{\"_index\":24,\"name\":{\"24\":{}},\"comment\":{}}],[\"isnumericstringoptions\",{\"_index\":25,\"name\":{\"25\":{}},\"comment\":{}}],[\"isplainobject\",{\"_index\":30,\"name\":{\"30\":{}},\"comment\":{}}],[\"last\",{\"_index\":31,\"name\":{\"31\":{}},\"comment\":{}}],[\"leading\",{\"_index\":74,\"name\":{\"84\":{}},\"comment\":{}}],[\"mapasync\",{\"_index\":32,\"name\":{\"32\":{}},\"comment\":{}}],[\"mapvalues\",{\"_index\":33,\"name\":{\"33\":{}},\"comment\":{}}],[\"mapvaluesfn\",{\"_index\":35,\"name\":{\"36\":{}},\"comment\":{}}],[\"mapvaluesunset\",{\"_index\":34,\"name\":{\"34\":{}},\"comment\":{}}],[\"match\",{\"_index\":36,\"name\":{\"38\":{}},\"comment\":{}}],[\"matchcallback\",{\"_index\":39,\"name\":{\"42\":{}},\"comment\":{}}],[\"matched\",{\"_index\":37,\"name\":{\"40\":{}},\"comment\":{}}],[\"merge\",{\"_index\":40,\"name\":{\"44\":{}},\"comment\":{}}],[\"mergeunset\",{\"_index\":41,\"name\":{\"45\":{}},\"comment\":{}}],[\"missingequalsundefined\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"mostfrequent\",{\"_index\":42,\"name\":{\"47\":{}},\"comment\":{}}],[\"noop\",{\"_index\":43,\"name\":{\"48\":{}},\"comment\":{}}],[\"occurencesoptions\",{\"_index\":45,\"name\":{\"50\":{}},\"comment\":{}}],[\"occurrences\",{\"_index\":44,\"name\":{\"49\":{}},\"comment\":{}}],[\"omit\",{\"_index\":47,\"name\":{\"52\":{}},\"comment\":{}}],[\"onlya\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"onlyb\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"overlap\",{\"_index\":46,\"name\":{\"51\":{}},\"comment\":{}}],[\"pick\",{\"_index\":48,\"name\":{\"53\":{}},\"comment\":{}}],[\"pull\",{\"_index\":49,\"name\":{\"54\":{}},\"comment\":{}}],[\"remove\",{\"_index\":50,\"name\":{\"55\":{}},\"comment\":{}}],[\"replace\",{\"_index\":51,\"name\":{\"56\":{}},\"comment\":{}}],[\"rethrow\",{\"_index\":52,\"name\":{\"57\":{}},\"comment\":{}}],[\"safe\",{\"_index\":53,\"name\":{\"58\":{}},\"comment\":{}}],[\"scale\",{\"_index\":54,\"name\":{\"59\":{}},\"comment\":{}}],[\"seq\",{\"_index\":55,\"name\":{\"60\":{}},\"comment\":{}}],[\"seqearlybreak\",{\"_index\":56,\"name\":{\"61\":{}},\"comment\":{}}],[\"seqearlybreaker\",{\"_index\":57,\"name\":{\"62\":{}},\"comment\":{}}],[\"seqfn\",{\"_index\":59,\"name\":{\"65\":{}},\"comment\":{}}],[\"seqfunctions\",{\"_index\":58,\"name\":{\"64\":{}},\"comment\":{}}],[\"set\",{\"_index\":60,\"name\":{\"67\":{}},\"comment\":{}}],[\"setimmutable\",{\"_index\":62,\"name\":{\"69\":{}},\"comment\":{}}],[\"setimmutablepath\",{\"_index\":63,\"name\":{\"70\":{}},\"comment\":{}}],[\"setimmutablesource\",{\"_index\":64,\"name\":{\"71\":{}},\"comment\":{}}],[\"setsource\",{\"_index\":61,\"name\":{\"68\":{}},\"comment\":{}}],[\"sortby\",{\"_index\":65,\"name\":{\"72\":{}},\"comment\":{}}],[\"sortprops\",{\"_index\":66,\"name\":{\"74\":{}},\"comment\":{}}],[\"stripprefix\",{\"_index\":67,\"name\":{\"75\":{}},\"comment\":{}}],[\"stripsuffix\",{\"_index\":68,\"name\":{\"76\":{}},\"comment\":{}}],[\"throttle\",{\"_index\":69,\"name\":{\"77\":{}},\"comment\":{}}],[\"throttledfunction\",{\"_index\":76,\"name\":{\"86\":{}},\"comment\":{}}],[\"throttledfunctionextras\",{\"_index\":70,\"name\":{\"78\":{}},\"comment\":{}}],[\"throttleoptions\",{\"_index\":73,\"name\":{\"83\":{}},\"comment\":{}}],[\"trailing\",{\"_index\":75,\"name\":{\"85\":{}},\"comment\":{}}],[\"truthy\",{\"_index\":77,\"name\":{\"88\":{}},\"comment\":{}}],[\"unique\",{\"_index\":78,\"name\":{\"89\":{}},\"comment\":{}}],[\"unmatched\",{\"_index\":38,\"name\":{\"41\":{}},\"comment\":{}}],[\"wait\",{\"_index\":79,\"name\":{\"90\":{}},\"comment\":{}}],[\"waitfor\",{\"_index\":80,\"name\":{\"91\":{}},\"comment\":{}}],[\"waitsync\",{\"_index\":81,\"name\":{\"92\":{}},\"comment\":{}}]],\"pipeline\":[]}}");
|
package/docs/functions/cap.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>cap | @ezez/utils - v1.
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>cap | @ezez/utils - v1.6.0</title><meta name="description" content="Documentation for @ezez/utils - v1.6.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
2
|
<div class="tsd-toolbar-contents container">
|
|
3
3
|
<div class="table-cell" id="tsd-search" data-base="..">
|
|
4
4
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
<div id="tsd-toolbar-links"></div></div>
|
|
7
7
|
<ul class="results">
|
|
8
8
|
<li class="state loading">Preparing search index...</li>
|
|
9
|
-
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.6.0</a></div>
|
|
10
10
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
11
11
|
<div class="container container-main">
|
|
12
12
|
<div class="col-8 col-content">
|
|
13
13
|
<div class="tsd-page-title">
|
|
14
14
|
<ul class="tsd-breadcrumb">
|
|
15
|
-
<li><a href="../modules.html">@ezez/utils - v1.
|
|
15
|
+
<li><a href="../modules.html">@ezez/utils - v1.6.0</a></li>
|
|
16
16
|
<li><a href="cap.html">cap</a></li></ul>
|
|
17
17
|
<h1>Function cap</h1></div>
|
|
18
18
|
<section class="tsd-panel">
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
</div></li></ul></div>
|
|
39
39
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4><aside class="tsd-sources">
|
|
40
40
|
<ul>
|
|
41
|
-
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/
|
|
41
|
+
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/fd785b1/src/cap.ts#L7">cap.ts:7</a></li></ul></aside></li></ul></section></div>
|
|
42
42
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
43
43
|
<div class="tsd-navigation settings">
|
|
44
44
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
|
@@ -58,13 +58,14 @@
|
|
|
58
58
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
|
59
59
|
<div class="tsd-accordion-details">
|
|
60
60
|
<ul>
|
|
61
|
-
<li><a href="../modules.html">@ezez/utils -<wbr/> v1.
|
|
61
|
+
<li><a href="../modules.html">@ezez/utils -<wbr/> v1.6.0</a>
|
|
62
62
|
<ul>
|
|
63
63
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/Introduction.html">Introduction</a></li>
|
|
64
64
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
|
|
65
65
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
66
66
|
<ul>
|
|
67
|
-
<li class="tsd-kind-interface"><a href="../interfaces/
|
|
67
|
+
<li class="tsd-kind-interface"><a href="../interfaces/ComparePropsOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg>Compare<wbr/>Props<wbr/>Options</a></li>
|
|
68
|
+
<li class="tsd-kind-interface"><a href="../interfaces/GetMultipleSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Get<wbr/>Multiple<wbr/>Source</a></li>
|
|
68
69
|
<li class="tsd-kind-interface"><a href="../interfaces/GetSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Get<wbr/>Source</a></li>
|
|
69
70
|
<li class="tsd-kind-interface"><a href="../interfaces/IsNumericStringOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Is<wbr/>Numeric<wbr/>String<wbr/>Options</a></li>
|
|
70
71
|
<li class="tsd-kind-interface"><a href="../interfaces/OccurencesOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Occurences<wbr/>Options</a></li>
|
|
@@ -84,6 +85,8 @@
|
|
|
84
85
|
<li class="current tsd-kind-function"><a href="cap.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>cap</a></li>
|
|
85
86
|
<li class="tsd-kind-function"><a href="capitalize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>capitalize</a></li>
|
|
86
87
|
<li class="tsd-kind-function"><a href="coalesce.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>coalesce</a></li>
|
|
88
|
+
<li class="tsd-kind-function"><a href="compareArrays.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Arrays</a></li>
|
|
89
|
+
<li class="tsd-kind-function"><a href="compareProps.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Props</a></li>
|
|
87
90
|
<li class="tsd-kind-function"><a href="ensureArray.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Array</a></li>
|
|
88
91
|
<li class="tsd-kind-function"><a href="ensureDate.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Date</a></li>
|
|
89
92
|
<li class="tsd-kind-function"><a href="ensureError.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Error</a></li>
|
|
@@ -123,6 +126,7 @@
|
|
|
123
126
|
<li class="tsd-kind-function"><a href="stripSuffix.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>strip<wbr/>Suffix</a></li>
|
|
124
127
|
<li class="tsd-kind-function"><a href="throttle.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>throttle</a></li>
|
|
125
128
|
<li class="tsd-kind-function"><a href="truthy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>truthy</a></li>
|
|
129
|
+
<li class="tsd-kind-function"><a href="unique.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>unique</a></li>
|
|
126
130
|
<li class="tsd-kind-function"><a href="wait.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait</a></li>
|
|
127
131
|
<li class="tsd-kind-function"><a href="waitFor.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>For</a></li>
|
|
128
132
|
<li class="tsd-kind-function"><a href="waitSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>Sync</a></li></ul></nav></div></div>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>capitalize | @ezez/utils - v1.
|
|
1
|
+
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>capitalize | @ezez/utils - v1.6.0</title><meta name="description" content="Documentation for @ezez/utils - v1.6.0"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script><link rel="stylesheet" href="../assets/pages.css"/></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os"</script><header class="tsd-page-toolbar">
|
|
2
2
|
<div class="tsd-toolbar-contents container">
|
|
3
3
|
<div class="table-cell" id="tsd-search" data-base="..">
|
|
4
4
|
<div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M15.7824 13.833L12.6666 10.7177C12.5259 10.5771 12.3353 10.499 12.1353 10.499H11.6259C12.4884 9.39596 13.001 8.00859 13.001 6.49937C13.001 2.90909 10.0914 0 6.50048 0C2.90959 0 0 2.90909 0 6.49937C0 10.0896 2.90959 12.9987 6.50048 12.9987C8.00996 12.9987 9.39756 12.4863 10.5008 11.6239V12.1332C10.5008 12.3332 10.5789 12.5238 10.7195 12.6644L13.8354 15.7797C14.1292 16.0734 14.6042 16.0734 14.8948 15.7797L15.7793 14.8954C16.0731 14.6017 16.0731 14.1267 15.7824 13.833ZM6.50048 10.499C4.29094 10.499 2.50018 8.71165 2.50018 6.49937C2.50018 4.29021 4.28781 2.49976 6.50048 2.49976C8.71001 2.49976 10.5008 4.28708 10.5008 6.49937C10.5008 8.70852 8.71314 10.499 6.50048 10.499Z" fill="var(--color-text)"></path></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div>
|
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
<div id="tsd-toolbar-links"></div></div>
|
|
7
7
|
<ul class="results">
|
|
8
8
|
<li class="state loading">Preparing search index...</li>
|
|
9
|
-
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.
|
|
9
|
+
<li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@ezez/utils - v1.6.0</a></div>
|
|
10
10
|
<div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><rect x="1" y="3" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="7" width="14" height="2" fill="var(--color-text)"></rect><rect x="1" y="11" width="14" height="2" fill="var(--color-text)"></rect></svg></a></div></div></header>
|
|
11
11
|
<div class="container container-main">
|
|
12
12
|
<div class="col-8 col-content">
|
|
13
13
|
<div class="tsd-page-title">
|
|
14
14
|
<ul class="tsd-breadcrumb">
|
|
15
|
-
<li><a href="../modules.html">@ezez/utils - v1.
|
|
15
|
+
<li><a href="../modules.html">@ezez/utils - v1.6.0</a></li>
|
|
16
16
|
<li><a href="capitalize.html">capitalize</a></li></ul>
|
|
17
17
|
<h1>Function capitalize</h1></div>
|
|
18
18
|
<section class="tsd-panel">
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
</div></li></ul></div>
|
|
44
44
|
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4><aside class="tsd-sources">
|
|
45
45
|
<ul>
|
|
46
|
-
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/
|
|
46
|
+
<li>Defined in <a href="https://github.com/dzek69/bottom-line/blob/fd785b1/src/capitalize.ts#L9">capitalize.ts:9</a></li></ul></aside></li></ul></section></div>
|
|
47
47
|
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
48
48
|
<div class="tsd-navigation settings">
|
|
49
49
|
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
|
|
@@ -63,13 +63,14 @@
|
|
|
63
63
|
<h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><path d="M4.93896 8.531L12 15.591L19.061 8.531L16.939 6.409L12 11.349L7.06098 6.409L4.93896 8.531Z" fill="var(--color-text)"></path></svg> Modules</h3></summary>
|
|
64
64
|
<div class="tsd-accordion-details">
|
|
65
65
|
<ul>
|
|
66
|
-
<li><a href="../modules.html">@ezez/utils -<wbr/> v1.
|
|
66
|
+
<li><a href="../modules.html">@ezez/utils -<wbr/> v1.6.0</a>
|
|
67
67
|
<ul>
|
|
68
68
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/Introduction.html">Introduction</a></li>
|
|
69
69
|
<li class="pages-entry pages-entry-page pages-entry-depth-1"><a href="../pages/CHANGELOG.html">Changelog</a></li></ul></li></ul></div></details></nav>
|
|
70
70
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
71
71
|
<ul>
|
|
72
|
-
<li class="tsd-kind-interface"><a href="../interfaces/
|
|
72
|
+
<li class="tsd-kind-interface"><a href="../interfaces/ComparePropsOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-interface)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-256-path"></rect><path d="M9.51 16V15.016H11.298V8.224H9.51V7.24H14.19V8.224H12.402V15.016H14.19V16H9.51Z" fill="var(--color-text)" id="icon-256-text"></path></svg>Compare<wbr/>Props<wbr/>Options</a></li>
|
|
73
|
+
<li class="tsd-kind-interface"><a href="../interfaces/GetMultipleSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Get<wbr/>Multiple<wbr/>Source</a></li>
|
|
73
74
|
<li class="tsd-kind-interface"><a href="../interfaces/GetSource.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Get<wbr/>Source</a></li>
|
|
74
75
|
<li class="tsd-kind-interface"><a href="../interfaces/IsNumericStringOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Is<wbr/>Numeric<wbr/>String<wbr/>Options</a></li>
|
|
75
76
|
<li class="tsd-kind-interface"><a href="../interfaces/OccurencesOptions.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-256-path"></use><use href="#icon-256-text"></use></svg>Occurences<wbr/>Options</a></li>
|
|
@@ -89,6 +90,8 @@
|
|
|
89
90
|
<li class="tsd-kind-function"><a href="cap.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><rect fill="var(--color-icon-background)" stroke="var(--color-ts-function)" stroke-width="1.5" x="1" y="1" width="22" height="22" rx="6" id="icon-64-path"></rect><path d="M9.39 16V7.24H14.55V8.224H10.446V11.128H14.238V12.112H10.47V16H9.39Z" fill="var(--color-text)" id="icon-64-text"></path></svg>cap</a></li>
|
|
90
91
|
<li class="current tsd-kind-function"><a href="capitalize.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>capitalize</a></li>
|
|
91
92
|
<li class="tsd-kind-function"><a href="coalesce.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>coalesce</a></li>
|
|
93
|
+
<li class="tsd-kind-function"><a href="compareArrays.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Arrays</a></li>
|
|
94
|
+
<li class="tsd-kind-function"><a href="compareProps.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>compare<wbr/>Props</a></li>
|
|
92
95
|
<li class="tsd-kind-function"><a href="ensureArray.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Array</a></li>
|
|
93
96
|
<li class="tsd-kind-function"><a href="ensureDate.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Date</a></li>
|
|
94
97
|
<li class="tsd-kind-function"><a href="ensureError.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>ensure<wbr/>Error</a></li>
|
|
@@ -128,6 +131,7 @@
|
|
|
128
131
|
<li class="tsd-kind-function"><a href="stripSuffix.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>strip<wbr/>Suffix</a></li>
|
|
129
132
|
<li class="tsd-kind-function"><a href="throttle.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>throttle</a></li>
|
|
130
133
|
<li class="tsd-kind-function"><a href="truthy.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>truthy</a></li>
|
|
134
|
+
<li class="tsd-kind-function"><a href="unique.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>unique</a></li>
|
|
131
135
|
<li class="tsd-kind-function"><a href="wait.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait</a></li>
|
|
132
136
|
<li class="tsd-kind-function"><a href="waitFor.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>For</a></li>
|
|
133
137
|
<li class="tsd-kind-function"><a href="waitSync.html" class="tsd-index-link"><svg class="tsd-kind-icon" width="24" height="24" viewBox="0 0 24 24"><use href="#icon-64-path"></use><use href="#icon-64-text"></use></svg>wait<wbr/>Sync</a></li></ul></nav></div></div>
|