@ezez/utils 1.0.0 → 1.1.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 +15 -8
- package/README.md +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/isEmpty.js +1 -1
- package/dist/isEmpty.js.map +1 -1
- package/dist/isNumericString.d.ts +10 -0
- package/dist/isNumericString.d.ts.map +1 -0
- package/dist/isNumericString.js +61 -0
- package/dist/isNumericString.js.map +1 -0
- package/dist/occurrences.d.ts +7 -0
- package/dist/occurrences.d.ts.map +1 -0
- package/dist/occurrences.js +27 -0
- package/dist/occurrences.js.map +1 -0
- package/docs/assets/search.js +1 -1
- package/docs/functions/cap.html +9 -5
- package/docs/functions/capitalize.html +9 -5
- package/docs/functions/coalesce.html +9 -5
- package/docs/functions/ensureArray.html +9 -5
- package/docs/functions/ensureError.html +9 -5
- package/docs/functions/get.html +9 -5
- package/docs/functions/getMultiple.html +9 -5
- package/docs/functions/insertSeparator.html +9 -5
- package/docs/functions/isEmpty.html +9 -5
- package/docs/functions/isNumericString.html +117 -0
- package/docs/functions/isPlainObject.html +9 -5
- package/docs/functions/last.html +9 -5
- package/docs/functions/mapAsync.html +9 -5
- package/docs/functions/mapValues.html +9 -5
- package/docs/functions/match.html +9 -5
- package/docs/functions/merge.html +17 -13
- package/docs/functions/mostFrequent.html +9 -5
- package/docs/functions/noop.html +9 -5
- package/docs/functions/occurrences.html +129 -0
- package/docs/functions/omit.html +9 -5
- package/docs/functions/pick.html +9 -5
- package/docs/functions/pull.html +9 -5
- package/docs/functions/remove.html +9 -5
- package/docs/functions/rethrow.html +9 -5
- package/docs/functions/scale.html +9 -5
- package/docs/functions/seq.html +9 -5
- package/docs/functions/seqEarlyBreak.html +9 -5
- package/docs/functions/set.html +9 -5
- package/docs/functions/setImmutable.html +9 -5
- package/docs/functions/sortBy.html +9 -5
- package/docs/functions/throttle.html +9 -5
- package/docs/functions/truthy.html +9 -5
- package/docs/functions/wait.html +9 -5
- package/docs/functions/waitFor.html +9 -5
- package/docs/functions/waitSync.html +9 -5
- package/docs/index.html +10 -4
- package/docs/interfaces/GetMultipleSource.html +9 -5
- package/docs/interfaces/GetSource.html +9 -5
- package/docs/interfaces/IsNumericStringOptions.html +90 -0
- package/docs/interfaces/OccurencesOptions.html +71 -0
- package/docs/interfaces/SetImmutableSource.html +9 -5
- package/docs/interfaces/SetSource.html +9 -5
- package/docs/interfaces/ThrottleOptions.html +7 -7
- package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
- package/docs/modules.html +12 -4
- package/docs/pages/Introduction.html +8 -4
- package/docs/types/MapValuesFn.html +9 -5
- package/docs/types/MatchCallback.html +9 -5
- package/docs/types/SeqEarlyBreaker.html +9 -5
- package/docs/types/SeqFn.html +9 -5
- package/docs/types/SeqFunctions.html +9 -5
- package/docs/types/SetImmutablePath.html +9 -5
- package/docs/types/ThrottledFunction.html +9 -5
- package/docs/variables/mapValuesUNSET.html +9 -5
- package/docs/variables/mergeUNSET.html +9 -5
- package/esm/index.d.ts +2 -0
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js +2 -0
- package/esm/index.js.map +1 -1
- package/esm/isEmpty.js +1 -1
- package/esm/isEmpty.js.map +1 -1
- package/esm/isNumericString.d.ts +10 -0
- package/esm/isNumericString.d.ts.map +1 -0
- package/esm/isNumericString.js +58 -0
- package/esm/isNumericString.js.map +1 -0
- package/esm/occurrences.d.ts +7 -0
- package/esm/occurrences.d.ts.map +1 -0
- package/esm/occurrences.js +24 -0
- package/esm/occurrences.js.map +1 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
- package/src/isEmpty.ts +1 -1
- package/src/isNumericString.spec.ts +100 -0
- package/src/isNumericString.ts +94 -0
- package/src/occurrences.spec.ts +20 -0
- package/src/occurrences.ts +53 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,16 @@ 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
|
-
## [
|
|
7
|
-
###
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
-
|
|
6
|
+
## [1.1.0] - 2023-02-20
|
|
7
|
+
### Added
|
|
8
|
+
- `isNumericString` method
|
|
9
|
+
- `occurrences` method
|
|
10
|
+
### Changed
|
|
11
|
+
- `isEmpty` throws `TypeError` instead of `Error` on primitives
|
|
12
|
+
|
|
13
|
+
## [1.0.0] - 2023-02-19
|
|
14
|
+
### Added
|
|
15
|
+
- `isPlainObject` method
|
|
12
16
|
### Breaking
|
|
13
17
|
- changed `isEmpty` to throw on primitives
|
|
14
18
|
- `makeArray` is renamed to `ensureArray`
|
|
@@ -20,8 +24,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
20
24
|
### Changed
|
|
21
25
|
- added some examples to docs
|
|
22
26
|
- in jsdoc added a warning to get/set and family about using them with TS
|
|
23
|
-
###
|
|
24
|
-
-
|
|
27
|
+
### Dev
|
|
28
|
+
- added missing docs
|
|
29
|
+
- fixed some jsdoc strings (so they contain types for non-ts users)
|
|
30
|
+
- fixed typedoc warnings
|
|
31
|
+
- README update, preparing to rename library
|
|
25
32
|
|
|
26
33
|
## [0.24.1] - 2022-11-08
|
|
27
34
|
### Dev
|
package/README.md
CHANGED
|
@@ -39,6 +39,7 @@ object, with just some properties copied. Easy, right? Few lines of code? Lodash
|
|
|
39
39
|
- `insertSeparator` - insert a separator between every character in an array
|
|
40
40
|
- `isEmpty` - check if given value is empty
|
|
41
41
|
- `isPlainObject` - check if given value is a plain object
|
|
42
|
+
- `isNumericString` - check if given value is a numeric string, features configurable
|
|
42
43
|
- `last` - get last element of an array
|
|
43
44
|
- `mapAsync` - map an array asynchronously if sync version blocks your event loop for too long
|
|
44
45
|
- `mapValues` - map values of an object
|
|
@@ -46,6 +47,7 @@ object, with just some properties copied. Easy, right? Few lines of code? Lodash
|
|
|
46
47
|
- `merge` - merge two objects shallowly, allowing to remove properties while doing so
|
|
47
48
|
- `mostFrequent` - find most frequent value in an array
|
|
48
49
|
- `noop` - do nothing
|
|
50
|
+
- `occurrences` - count occurrences of a substring in a string, optionally allow overlapping
|
|
49
51
|
- `omit` - omit properties from an object
|
|
50
52
|
- `pick` - pick some properties from an object
|
|
51
53
|
- `pull` - remove values from an array (by mutating)
|
package/dist/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from "./get.js";
|
|
|
7
7
|
export * from "./getMultiple.js";
|
|
8
8
|
export * from "./insertSeparator.js";
|
|
9
9
|
export * from "./isEmpty.js";
|
|
10
|
+
export * from "./isNumericString.js";
|
|
10
11
|
export * from "./isPlainObject.js";
|
|
11
12
|
export * from "./last.js";
|
|
12
13
|
export * from "./mapAsync.js";
|
|
@@ -15,6 +16,7 @@ export * from "./match.js";
|
|
|
15
16
|
export * from "./merge.js";
|
|
16
17
|
export * from "./mostFrequent.js";
|
|
17
18
|
export * from "./noop.js";
|
|
19
|
+
export * from "./occurrences.js";
|
|
18
20
|
export * from "./omit.js";
|
|
19
21
|
export * from "./pick.js";
|
|
20
22
|
export * from "./pull.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,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,UAAU,CAAC;AACzB,cAAc,kBAAkB,CAAC;AACjC,cAAc,sBAAsB,CAAC;AACrC,cAAc,cAAc,CAAC;AAC7B,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,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,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,UAAU,CAAC;AACzB,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,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,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC;AACzB,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -23,6 +23,7 @@ __exportStar(require("./get.js"), exports);
|
|
|
23
23
|
__exportStar(require("./getMultiple.js"), exports);
|
|
24
24
|
__exportStar(require("./insertSeparator.js"), exports);
|
|
25
25
|
__exportStar(require("./isEmpty.js"), exports);
|
|
26
|
+
__exportStar(require("./isNumericString.js"), exports);
|
|
26
27
|
__exportStar(require("./isPlainObject.js"), exports);
|
|
27
28
|
__exportStar(require("./last.js"), exports);
|
|
28
29
|
__exportStar(require("./mapAsync.js"), exports);
|
|
@@ -31,6 +32,7 @@ __exportStar(require("./match.js"), exports);
|
|
|
31
32
|
__exportStar(require("./merge.js"), exports);
|
|
32
33
|
__exportStar(require("./mostFrequent.js"), exports);
|
|
33
34
|
__exportStar(require("./noop.js"), exports);
|
|
35
|
+
__exportStar(require("./occurrences.js"), exports);
|
|
34
36
|
__exportStar(require("./omit.js"), exports);
|
|
35
37
|
__exportStar(require("./pick.js"), exports);
|
|
36
38
|
__exportStar(require("./pull.js"), exports);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,2CAAyB;AACzB,kDAAgC;AAChC,gDAA8B;AAC9B,mDAAiC;AACjC,mDAAiC;AACjC,2CAAyB;AACzB,mDAAiC;AACjC,uDAAqC;AACrC,+CAA6B;AAC7B,qDAAmC;AACnC,4CAA0B;AAC1B,gDAA8B;AAC9B,iDAA+B;AAC/B,6CAA2B;AAC3B,6CAA2B;AAC3B,oDAAkC;AAClC,4CAA0B;AAC1B,4CAA0B;AAC1B,4CAA0B;AAC1B,4CAA0B;AAC1B,8CAA4B;AAC5B,+CAA6B;AAC7B,6CAA2B;AAC3B,2CAAyB;AACzB,2CAAyB;AACzB,oDAAkC;AAClC,8CAA4B;AAC5B,gDAA8B;AAC9B,8CAA4B;AAC5B,4CAA0B;AAC1B,+CAA6B;AAC7B,gDAA8B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,2CAAyB;AACzB,kDAAgC;AAChC,gDAA8B;AAC9B,mDAAiC;AACjC,mDAAiC;AACjC,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,6CAA2B;AAC3B,2CAAyB;AACzB,2CAAyB;AACzB,oDAAkC;AAClC,8CAA4B;AAC5B,gDAA8B;AAC9B,8CAA4B;AAC5B,4CAA0B;AAC1B,+CAA6B;AAC7B,gDAA8B"}
|
package/dist/isEmpty.js
CHANGED
|
@@ -9,7 +9,7 @@ const isEmpty = (obj) => {
|
|
|
9
9
|
return true;
|
|
10
10
|
}
|
|
11
11
|
if (typeof obj !== "object") {
|
|
12
|
-
throw new
|
|
12
|
+
throw new TypeError("isEmpty cannot be used on primitives");
|
|
13
13
|
}
|
|
14
14
|
if (Array.isArray(obj)) {
|
|
15
15
|
return !Object.keys(obj).length;
|
package/dist/isEmpty.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"isEmpty.js","sourceRoot":"","sources":["../src/isEmpty.ts"],"names":[],"mappings":";;;AA2BA,MAAM,OAAO,GAAG,CAAC,GAAY,EAAE,EAAE;IAC7B,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;QACzB,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC;KACtB;IACD,IAAI,GAAG,IAAI,IAAI,EAAE;QACb,OAAO,IAAI,CAAC;KACf;IACD,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;QACzB,MAAM,IAAI,
|
|
1
|
+
{"version":3,"file":"isEmpty.js","sourceRoot":"","sources":["../src/isEmpty.ts"],"names":[],"mappings":";;;AA2BA,MAAM,OAAO,GAAG,CAAC,GAAY,EAAE,EAAE;IAC7B,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;QACzB,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC;KACtB;IACD,IAAI,GAAG,IAAI,IAAI,EAAE;QACb,OAAO,IAAI,CAAC;KACf;IACD,IAAI,OAAO,GAAG,KAAK,QAAQ,EAAE;QACzB,MAAM,IAAI,SAAS,CAAC,sCAAsC,CAAC,CAAC;KAC/D;IACD,IAAI,KAAK,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;QACpB,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC;KACnC;IACD,IAAI,QAAQ,IAAI,GAAG,EAAE;QACjB,OAAO,CAAE,GAAwB,CAAC,MAAM,CAAC;KAC5C;IACD,IAAI,MAAM,IAAI,GAAG,EAAE;QACf,OAAO,CAAE,GAAsB,CAAC,IAAI,CAAC;KACxC;IACD,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC;AACpC,CAAC,CAAC;AAEO,0BAAO"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
interface Options {
|
|
2
|
+
allowFloats?: boolean;
|
|
3
|
+
allowExponents?: boolean;
|
|
4
|
+
allowInfinity?: boolean;
|
|
5
|
+
allowNaN?: boolean;
|
|
6
|
+
}
|
|
7
|
+
declare const isNumericString: (string: string, options?: Options) => boolean;
|
|
8
|
+
export { isNumericString, };
|
|
9
|
+
export type { Options as IsNumericStringOptions, };
|
|
10
|
+
//# sourceMappingURL=isNumericString.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isNumericString.d.ts","sourceRoot":"","sources":["../src/isNumericString.ts"],"names":[],"mappings":"AAAA,UAAU,OAAO;IACb,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACtB;AAcD,QAAA,MAAM,eAAe,WAAY,MAAM,YAAW,OAAO,YAkExD,CAAC;AAEF,OAAO,EACH,eAAe,GAClB,CAAC;AAEF,YAAY,EACR,OAAO,IAAI,sBAAsB,GACpC,CAAC"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.isNumericString = void 0;
|
|
4
|
+
const NOT_FOUND = -1;
|
|
5
|
+
const isNumericString = (string, options = {}) => {
|
|
6
|
+
if (typeof string !== "string") {
|
|
7
|
+
throw new TypeError("Expected a string");
|
|
8
|
+
}
|
|
9
|
+
if (options.allowNaN && string === "NaN") {
|
|
10
|
+
return true;
|
|
11
|
+
}
|
|
12
|
+
if (options.allowInfinity && (string === "Infinity" || string === "-Infinity")) {
|
|
13
|
+
return true;
|
|
14
|
+
}
|
|
15
|
+
let normalized = string.toLowerCase();
|
|
16
|
+
if (normalized.startsWith("-")) {
|
|
17
|
+
normalized = normalized.slice(1);
|
|
18
|
+
}
|
|
19
|
+
const parts = normalized.split(".");
|
|
20
|
+
if (parts.length > (options.allowFloats ? 2 : 1)) {
|
|
21
|
+
return false;
|
|
22
|
+
}
|
|
23
|
+
const expParts = parts[parts.length - 1].split("e");
|
|
24
|
+
if (!options.allowExponents) {
|
|
25
|
+
if (expParts.length > 1) {
|
|
26
|
+
return false;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
else {
|
|
30
|
+
if (expParts.length > 2) {
|
|
31
|
+
return false;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
const hasPlusAt = normalized.indexOf("+");
|
|
35
|
+
if (hasPlusAt > NOT_FOUND) {
|
|
36
|
+
if (!options.allowExponents) {
|
|
37
|
+
return false;
|
|
38
|
+
}
|
|
39
|
+
if (hasPlusAt !== normalized.lastIndexOf("+")) {
|
|
40
|
+
return false;
|
|
41
|
+
}
|
|
42
|
+
if (hasPlusAt !== normalized.indexOf("e") + 1) {
|
|
43
|
+
return false;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
const hasMinusAt = normalized.indexOf("-");
|
|
47
|
+
if (hasMinusAt > NOT_FOUND) {
|
|
48
|
+
if (!options.allowExponents) {
|
|
49
|
+
return false;
|
|
50
|
+
}
|
|
51
|
+
if (hasMinusAt !== normalized.lastIndexOf("-")) {
|
|
52
|
+
return false;
|
|
53
|
+
}
|
|
54
|
+
if (hasMinusAt !== normalized.indexOf("e") + 1) {
|
|
55
|
+
return false;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
return Boolean(/^[\de.+-]+$/.exec(normalized));
|
|
59
|
+
};
|
|
60
|
+
exports.isNumericString = isNumericString;
|
|
61
|
+
//# sourceMappingURL=isNumericString.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isNumericString.js","sourceRoot":"","sources":["../src/isNumericString.ts"],"names":[],"mappings":";;;AAOA,MAAM,SAAS,GAAG,CAAC,CAAC,CAAC;AAYrB,MAAM,eAAe,GAAG,CAAC,MAAc,EAAE,UAAmB,EAAE,EAAE,EAAE;IAC9D,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;QAC5B,MAAM,IAAI,SAAS,CAAC,mBAAmB,CAAC,CAAC;KAC5C;IAED,IAAI,OAAO,CAAC,QAAQ,IAAI,MAAM,KAAK,KAAK,EAAE;QACtC,OAAO,IAAI,CAAC;KACf;IAED,IAAI,OAAO,CAAC,aAAa,IAAI,CAAC,MAAM,KAAK,UAAU,IAAI,MAAM,KAAK,WAAW,CAAC,EAAE;QAC5E,OAAO,IAAI,CAAC;KACf;IAED,IAAI,UAAU,GAAG,MAAM,CAAC,WAAW,EAAE,CAAC;IACtC,IAAI,UAAU,CAAC,UAAU,CAAC,GAAG,CAAC,EAAE;QAC5B,UAAU,GAAG,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;KACpC;IAED,MAAM,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAGpC,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE;QAC9C,OAAO,KAAK,CAAC;KAChB;IAED,MAAM,QAAQ,GAAG,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IAEpD,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE;QACzB,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;YACrB,OAAO,KAAK,CAAC;SAChB;KACJ;SACI;QAED,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;YACrB,OAAO,KAAK,CAAC;SAChB;KACJ;IAED,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IAC1C,IAAI,SAAS,GAAG,SAAS,EAAE;QACvB,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE;YACzB,OAAO,KAAK,CAAC;SAChB;QACD,IAAI,SAAS,KAAK,UAAU,CAAC,WAAW,CAAC,GAAG,CAAC,EAAE;YAC3C,OAAO,KAAK,CAAC;SAChB;QACD,IAAI,SAAS,KAAK,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;YAC3C,OAAO,KAAK,CAAC;SAChB;KACJ;IAED,MAAM,UAAU,GAAG,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IAC3C,IAAI,UAAU,GAAG,SAAS,EAAE;QACxB,IAAI,CAAC,OAAO,CAAC,cAAc,EAAE;YACzB,OAAO,KAAK,CAAC;SAChB;QACD,IAAI,UAAU,KAAK,UAAU,CAAC,WAAW,CAAC,GAAG,CAAC,EAAE;YAC5C,OAAO,KAAK,CAAC;SAChB;QACD,IAAI,UAAU,KAAK,UAAU,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE;YAC5C,OAAO,KAAK,CAAC;SAChB;KACJ;IAED,OAAO,OAAO,CAAC,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC;AACnD,CAAC,CAAC;AAGE,0CAAe"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"occurrences.d.ts","sourceRoot":"","sources":["../src/occurrences.ts"],"names":[],"mappings":"AAAA,UAAU,OAAO;IAIb,OAAO,CAAC,EAAE,OAAO,CAAC;CACrB;AAeD,QAAA,MAAM,WAAW,WAAY,MAAM,UAAU,MAAM,gBAAe,OAAO,WAwBxE,CAAC;AAEF,OAAO,EACH,WAAW,GACd,CAAC;AAEF,YAAY,EACR,OAAO,IAAI,iBAAiB,GAC/B,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.occurrences = void 0;
|
|
4
|
+
const NOT_FOUND = -1;
|
|
5
|
+
const occurrences = (string, search, { overlap } = {}) => {
|
|
6
|
+
if (typeof string !== "string") {
|
|
7
|
+
throw new TypeError("Expected a string");
|
|
8
|
+
}
|
|
9
|
+
if (typeof search !== "string") {
|
|
10
|
+
throw new TypeError("Expected a string");
|
|
11
|
+
}
|
|
12
|
+
if (search.length === 0) {
|
|
13
|
+
return 0;
|
|
14
|
+
}
|
|
15
|
+
let n = 0, i = 0;
|
|
16
|
+
while (true) {
|
|
17
|
+
i = string.indexOf(search, i);
|
|
18
|
+
if (i === NOT_FOUND) {
|
|
19
|
+
break;
|
|
20
|
+
}
|
|
21
|
+
n++;
|
|
22
|
+
i += overlap ? 1 : search.length;
|
|
23
|
+
}
|
|
24
|
+
return n;
|
|
25
|
+
};
|
|
26
|
+
exports.occurrences = occurrences;
|
|
27
|
+
//# sourceMappingURL=occurrences.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"occurrences.js","sourceRoot":"","sources":["../src/occurrences.ts"],"names":[],"mappings":";;;AAOA,MAAM,SAAS,GAAG,CAAC,CAAC,CAAC;AAarB,MAAM,WAAW,GAAG,CAAC,MAAc,EAAE,MAAc,EAAE,EAAE,OAAO,KAAc,EAAE,EAAE,EAAE;IAC9E,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;QAC5B,MAAM,IAAI,SAAS,CAAC,mBAAmB,CAAC,CAAC;KAC5C;IACD,IAAI,OAAO,MAAM,KAAK,QAAQ,EAAE;QAC5B,MAAM,IAAI,SAAS,CAAC,mBAAmB,CAAC,CAAC;KAC5C;IACD,IAAI,MAAM,CAAC,MAAM,KAAK,CAAC,EAAE;QACrB,OAAO,CAAC,CAAC;KACZ;IACD,IAAI,CAAC,GAAG,CAAC,EACL,CAAC,GAAG,CAAC,CAAC;IAGV,OAAO,IAAI,EAAE;QACT,CAAC,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;QAE9B,IAAI,CAAC,KAAK,SAAS,EAAE;YACjB,MAAM;SACT;QACD,CAAC,EAAE,CAAC;QACJ,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC;KACpC;IACD,OAAO,CAAC,CAAC;AACb,CAAC,CAAC;AAGE,kCAAW"}
|
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\":\"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\":\"ensureError\",\"url\":\"functions/ensureError.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\":\"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\":\"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\":\"rethrow\",\"url\":\"functions/rethrow.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\":\"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\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,37.992]],[\"comment/0\",[]],[\"name/1\",[1,37.992]],[\"comment/1\",[]],[\"name/2\",[2,37.992]],[\"comment/2\",[]],[\"name/3\",[3,37.992]],[\"comment/3\",[]],[\"name/4\",[4,37.992]],[\"comment/4\",[]],[\"name/5\",[5,37.992]],[\"comment/5\",[]],[\"name/6\",[6,37.992]],[\"comment/6\",[]],[\"name/7\",[7,37.992]],[\"comment/7\",[]],[\"name/8\",[8,37.992]],[\"comment/8\",[]],[\"name/9\",[9,37.992]],[\"comment/9\",[]],[\"name/10\",[10,37.992]],[\"comment/10\",[]],[\"name/11\",[11,37.992]],[\"comment/11\",[]],[\"name/12\",[12,37.992]],[\"comment/12\",[]],[\"name/13\",[13,37.992]],[\"comment/13\",[]],[\"name/14\",[14,37.992]],[\"comment/14\",[]],[\"name/15\",[15,37.992]],[\"comment/15\",[]],[\"name/16\",[16,17.623]],[\"comment/16\",[]],[\"name/17\",[17,37.992]],[\"comment/17\",[]],[\"name/18\",[16,17.623]],[\"comment/18\",[]],[\"name/19\",[18,37.992]],[\"comment/19\",[]],[\"name/20\",[16,17.623]],[\"comment/20\",[]],[\"name/21\",[19,37.992]],[\"comment/21\",[]],[\"name/22\",[20,37.992]],[\"comment/22\",[]],[\"name/23\",[21,37.992]],[\"comment/23\",[]],[\"name/24\",[16,17.623]],[\"comment/24\",[]],[\"name/25\",[22,37.992]],[\"comment/25\",[]],[\"name/26\",[23,37.992]],[\"comment/26\",[]],[\"name/27\",[16,17.623]],[\"comment/27\",[]],[\"name/28\",[24,37.992]],[\"comment/28\",[]],[\"name/29\",[25,37.992]],[\"comment/29\",[]],[\"name/30\",[26,37.992]],[\"comment/30\",[]],[\"name/31\",[27,37.992]],[\"comment/31\",[]],[\"name/32\",[28,37.992]],[\"comment/32\",[]],[\"name/33\",[29,37.992]],[\"comment/33\",[]],[\"name/34\",[30,37.992]],[\"comment/34\",[]],[\"name/35\",[31,37.992]],[\"comment/35\",[]],[\"name/36\",[32,37.992]],[\"comment/36\",[]],[\"name/37\",[33,37.992]],[\"comment/37\",[]],[\"name/38\",[34,37.992]],[\"comment/38\",[]],[\"name/39\",[16,17.623]],[\"comment/39\",[]],[\"name/40\",[35,37.992]],[\"comment/40\",[]],[\"name/41\",[36,37.992]],[\"comment/41\",[]],[\"name/42\",[16,17.623]],[\"comment/42\",[]],[\"name/43\",[37,37.992]],[\"comment/43\",[]],[\"name/44\",[38,37.992]],[\"comment/44\",[]],[\"name/45\",[39,37.992]],[\"comment/45\",[]],[\"name/46\",[40,37.992]],[\"comment/46\",[]],[\"name/47\",[41,37.992]],[\"comment/47\",[]],[\"name/48\",[42,37.992]],[\"comment/48\",[]],[\"name/49\",[16,17.623]],[\"comment/49\",[]],[\"name/50\",[43,37.992]],[\"comment/50\",[]],[\"name/51\",[44,37.992]],[\"comment/51\",[]],[\"name/52\",[45,37.992]],[\"comment/52\",[]],[\"name/53\",[16,17.623]],[\"comment/53\",[]],[\"name/54\",[46,37.992]],[\"comment/54\",[]],[\"name/55\",[16,17.623]],[\"comment/55\",[]],[\"name/56\",[47,37.992]],[\"comment/56\",[]],[\"name/57\",[48,37.992]],[\"comment/57\",[]],[\"name/58\",[49,37.992]],[\"comment/58\",[]],[\"name/59\",[50,37.992]],[\"comment/59\",[]],[\"name/60\",[16,17.623]],[\"comment/60\",[]],[\"name/61\",[51,37.992]],[\"comment/61\",[]],[\"name/62\",[52,37.992]],[\"comment/62\",[]],[\"name/63\",[53,37.992]],[\"comment/63\",[]],[\"name/64\",[54,37.992]],[\"comment/64\",[]],[\"name/65\",[55,37.992]],[\"comment/65\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":16,\"name\":{\"16\":{},\"18\":{},\"20\":{},\"24\":{},\"27\":{},\"39\":{},\"42\":{},\"49\":{},\"53\":{},\"55\":{},\"60\":{}},\"comment\":{}}],[\"cancel\",{\"_index\":45,\"name\":{\"52\":{}},\"comment\":{}}],[\"cap\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"coalesce\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"ensurearray\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"ensureerror\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"flush\",{\"_index\":46,\"name\":{\"54\":{}},\"comment\":{}}],[\"get\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"getmultiple\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"getmultiplesource\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"getsource\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"insertseparator\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"introduction\",{\"_index\":55,\"name\":{\"65\":{}},\"comment\":{}}],[\"isempty\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"isplainobject\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"last\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"leading\",{\"_index\":48,\"name\":{\"57\":{}},\"comment\":{}}],[\"mapasync\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"mapvalues\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"mapvaluesfn\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"mapvaluesunset\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"match\",{\"_index\":18,\"name\":{\"19\":{}},\"comment\":{}}],[\"matchcallback\",{\"_index\":21,\"name\":{\"23\":{}},\"comment\":{}}],[\"matched\",{\"_index\":19,\"name\":{\"21\":{}},\"comment\":{}}],[\"merge\",{\"_index\":22,\"name\":{\"25\":{}},\"comment\":{}}],[\"mergeunset\",{\"_index\":23,\"name\":{\"26\":{}},\"comment\":{}}],[\"mostfrequent\",{\"_index\":24,\"name\":{\"28\":{}},\"comment\":{}}],[\"noop\",{\"_index\":25,\"name\":{\"29\":{}},\"comment\":{}}],[\"omit\",{\"_index\":26,\"name\":{\"30\":{}},\"comment\":{}}],[\"pick\",{\"_index\":27,\"name\":{\"31\":{}},\"comment\":{}}],[\"pull\",{\"_index\":28,\"name\":{\"32\":{}},\"comment\":{}}],[\"remove\",{\"_index\":29,\"name\":{\"33\":{}},\"comment\":{}}],[\"rethrow\",{\"_index\":30,\"name\":{\"34\":{}},\"comment\":{}}],[\"scale\",{\"_index\":31,\"name\":{\"35\":{}},\"comment\":{}}],[\"seq\",{\"_index\":32,\"name\":{\"36\":{}},\"comment\":{}}],[\"seqearlybreak\",{\"_index\":33,\"name\":{\"37\":{}},\"comment\":{}}],[\"seqearlybreaker\",{\"_index\":34,\"name\":{\"38\":{}},\"comment\":{}}],[\"seqfn\",{\"_index\":36,\"name\":{\"41\":{}},\"comment\":{}}],[\"seqfunctions\",{\"_index\":35,\"name\":{\"40\":{}},\"comment\":{}}],[\"set\",{\"_index\":37,\"name\":{\"43\":{}},\"comment\":{}}],[\"setimmutable\",{\"_index\":39,\"name\":{\"45\":{}},\"comment\":{}}],[\"setimmutablepath\",{\"_index\":40,\"name\":{\"46\":{}},\"comment\":{}}],[\"setimmutablesource\",{\"_index\":41,\"name\":{\"47\":{}},\"comment\":{}}],[\"setsource\",{\"_index\":38,\"name\":{\"44\":{}},\"comment\":{}}],[\"sortby\",{\"_index\":42,\"name\":{\"48\":{}},\"comment\":{}}],[\"throttle\",{\"_index\":43,\"name\":{\"50\":{}},\"comment\":{}}],[\"throttledfunction\",{\"_index\":50,\"name\":{\"59\":{}},\"comment\":{}}],[\"throttledfunctionextras\",{\"_index\":44,\"name\":{\"51\":{}},\"comment\":{}}],[\"throttleoptions\",{\"_index\":47,\"name\":{\"56\":{}},\"comment\":{}}],[\"trailing\",{\"_index\":49,\"name\":{\"58\":{}},\"comment\":{}}],[\"truthy\",{\"_index\":51,\"name\":{\"61\":{}},\"comment\":{}}],[\"unmatched\",{\"_index\":20,\"name\":{\"22\":{}},\"comment\":{}}],[\"wait\",{\"_index\":52,\"name\":{\"62\":{}},\"comment\":{}}],[\"waitfor\",{\"_index\":53,\"name\":{\"63\":{}},\"comment\":{}}],[\"waitsync\",{\"_index\":54,\"name\":{\"64\":{}},\"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\":\"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\":\"ensureError\",\"url\":\"functions/ensureError.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\":\"rethrow\",\"url\":\"functions/rethrow.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\":\"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\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"comment\"],\"fieldVectors\":[[\"name/0\",[0,39.253]],[\"comment/0\",[]],[\"name/1\",[1,39.253]],[\"comment/1\",[]],[\"name/2\",[2,39.253]],[\"comment/2\",[]],[\"name/3\",[3,39.253]],[\"comment/3\",[]],[\"name/4\",[4,39.253]],[\"comment/4\",[]],[\"name/5\",[5,39.253]],[\"comment/5\",[]],[\"name/6\",[6,39.253]],[\"comment/6\",[]],[\"name/7\",[7,39.253]],[\"comment/7\",[]],[\"name/8\",[8,39.253]],[\"comment/8\",[]],[\"name/9\",[9,39.253]],[\"comment/9\",[]],[\"name/10\",[10,39.253]],[\"comment/10\",[]],[\"name/11\",[11,39.253]],[\"comment/11\",[]],[\"name/12\",[12,39.253]],[\"comment/12\",[]],[\"name/13\",[13,39.253]],[\"comment/13\",[]],[\"name/14\",[14,39.253]],[\"comment/14\",[]],[\"name/15\",[15,39.253]],[\"comment/15\",[]],[\"name/16\",[16,39.253]],[\"comment/16\",[]],[\"name/17\",[17,39.253]],[\"comment/17\",[]],[\"name/18\",[18,39.253]],[\"comment/18\",[]],[\"name/19\",[19,39.253]],[\"comment/19\",[]],[\"name/20\",[20,39.253]],[\"comment/20\",[]],[\"name/21\",[21,39.253]],[\"comment/21\",[]],[\"name/22\",[22,18.884]],[\"comment/22\",[]],[\"name/23\",[23,39.253]],[\"comment/23\",[]],[\"name/24\",[22,18.884]],[\"comment/24\",[]],[\"name/25\",[24,39.253]],[\"comment/25\",[]],[\"name/26\",[22,18.884]],[\"comment/26\",[]],[\"name/27\",[25,39.253]],[\"comment/27\",[]],[\"name/28\",[26,39.253]],[\"comment/28\",[]],[\"name/29\",[27,39.253]],[\"comment/29\",[]],[\"name/30\",[22,18.884]],[\"comment/30\",[]],[\"name/31\",[28,39.253]],[\"comment/31\",[]],[\"name/32\",[29,39.253]],[\"comment/32\",[]],[\"name/33\",[22,18.884]],[\"comment/33\",[]],[\"name/34\",[30,39.253]],[\"comment/34\",[]],[\"name/35\",[31,39.253]],[\"comment/35\",[]],[\"name/36\",[32,39.253]],[\"comment/36\",[]],[\"name/37\",[33,39.253]],[\"comment/37\",[]],[\"name/38\",[34,39.253]],[\"comment/38\",[]],[\"name/39\",[35,39.253]],[\"comment/39\",[]],[\"name/40\",[36,39.253]],[\"comment/40\",[]],[\"name/41\",[37,39.253]],[\"comment/41\",[]],[\"name/42\",[38,39.253]],[\"comment/42\",[]],[\"name/43\",[39,39.253]],[\"comment/43\",[]],[\"name/44\",[40,39.253]],[\"comment/44\",[]],[\"name/45\",[41,39.253]],[\"comment/45\",[]],[\"name/46\",[42,39.253]],[\"comment/46\",[]],[\"name/47\",[43,39.253]],[\"comment/47\",[]],[\"name/48\",[22,18.884]],[\"comment/48\",[]],[\"name/49\",[44,39.253]],[\"comment/49\",[]],[\"name/50\",[45,39.253]],[\"comment/50\",[]],[\"name/51\",[22,18.884]],[\"comment/51\",[]],[\"name/52\",[46,39.253]],[\"comment/52\",[]],[\"name/53\",[47,39.253]],[\"comment/53\",[]],[\"name/54\",[48,39.253]],[\"comment/54\",[]],[\"name/55\",[49,39.253]],[\"comment/55\",[]],[\"name/56\",[50,39.253]],[\"comment/56\",[]],[\"name/57\",[51,39.253]],[\"comment/57\",[]],[\"name/58\",[22,18.884]],[\"comment/58\",[]],[\"name/59\",[52,39.253]],[\"comment/59\",[]],[\"name/60\",[53,39.253]],[\"comment/60\",[]],[\"name/61\",[54,39.253]],[\"comment/61\",[]],[\"name/62\",[22,18.884]],[\"comment/62\",[]],[\"name/63\",[55,39.253]],[\"comment/63\",[]],[\"name/64\",[22,18.884]],[\"comment/64\",[]],[\"name/65\",[56,39.253]],[\"comment/65\",[]],[\"name/66\",[57,39.253]],[\"comment/66\",[]],[\"name/67\",[58,39.253]],[\"comment/67\",[]],[\"name/68\",[59,39.253]],[\"comment/68\",[]],[\"name/69\",[22,18.884]],[\"comment/69\",[]],[\"name/70\",[60,39.253]],[\"comment/70\",[]],[\"name/71\",[61,39.253]],[\"comment/71\",[]],[\"name/72\",[62,39.253]],[\"comment/72\",[]],[\"name/73\",[63,39.253]],[\"comment/73\",[]],[\"name/74\",[64,39.253]],[\"comment/74\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":22,\"name\":{\"22\":{},\"24\":{},\"26\":{},\"30\":{},\"33\":{},\"48\":{},\"51\":{},\"58\":{},\"62\":{},\"64\":{},\"69\":{}},\"comment\":{}}],[\"allowexponents\",{\"_index\":14,\"name\":{\"14\":{}},\"comment\":{}}],[\"allowfloats\",{\"_index\":13,\"name\":{\"13\":{}},\"comment\":{}}],[\"allowinfinity\",{\"_index\":15,\"name\":{\"15\":{}},\"comment\":{}}],[\"allownan\",{\"_index\":16,\"name\":{\"16\":{}},\"comment\":{}}],[\"cancel\",{\"_index\":54,\"name\":{\"61\":{}},\"comment\":{}}],[\"cap\",{\"_index\":0,\"name\":{\"0\":{}},\"comment\":{}}],[\"capitalize\",{\"_index\":1,\"name\":{\"1\":{}},\"comment\":{}}],[\"coalesce\",{\"_index\":2,\"name\":{\"2\":{}},\"comment\":{}}],[\"ensurearray\",{\"_index\":3,\"name\":{\"3\":{}},\"comment\":{}}],[\"ensureerror\",{\"_index\":4,\"name\":{\"4\":{}},\"comment\":{}}],[\"flush\",{\"_index\":55,\"name\":{\"63\":{}},\"comment\":{}}],[\"get\",{\"_index\":5,\"name\":{\"5\":{}},\"comment\":{}}],[\"getmultiple\",{\"_index\":7,\"name\":{\"7\":{}},\"comment\":{}}],[\"getmultiplesource\",{\"_index\":8,\"name\":{\"8\":{}},\"comment\":{}}],[\"getsource\",{\"_index\":6,\"name\":{\"6\":{}},\"comment\":{}}],[\"insertseparator\",{\"_index\":9,\"name\":{\"9\":{}},\"comment\":{}}],[\"introduction\",{\"_index\":64,\"name\":{\"74\":{}},\"comment\":{}}],[\"isempty\",{\"_index\":10,\"name\":{\"10\":{}},\"comment\":{}}],[\"isnumericstring\",{\"_index\":11,\"name\":{\"11\":{}},\"comment\":{}}],[\"isnumericstringoptions\",{\"_index\":12,\"name\":{\"12\":{}},\"comment\":{}}],[\"isplainobject\",{\"_index\":17,\"name\":{\"17\":{}},\"comment\":{}}],[\"last\",{\"_index\":18,\"name\":{\"18\":{}},\"comment\":{}}],[\"leading\",{\"_index\":57,\"name\":{\"66\":{}},\"comment\":{}}],[\"mapasync\",{\"_index\":19,\"name\":{\"19\":{}},\"comment\":{}}],[\"mapvalues\",{\"_index\":20,\"name\":{\"20\":{}},\"comment\":{}}],[\"mapvaluesfn\",{\"_index\":23,\"name\":{\"23\":{}},\"comment\":{}}],[\"mapvaluesunset\",{\"_index\":21,\"name\":{\"21\":{}},\"comment\":{}}],[\"match\",{\"_index\":24,\"name\":{\"25\":{}},\"comment\":{}}],[\"matchcallback\",{\"_index\":27,\"name\":{\"29\":{}},\"comment\":{}}],[\"matched\",{\"_index\":25,\"name\":{\"27\":{}},\"comment\":{}}],[\"merge\",{\"_index\":28,\"name\":{\"31\":{}},\"comment\":{}}],[\"mergeunset\",{\"_index\":29,\"name\":{\"32\":{}},\"comment\":{}}],[\"mostfrequent\",{\"_index\":30,\"name\":{\"34\":{}},\"comment\":{}}],[\"noop\",{\"_index\":31,\"name\":{\"35\":{}},\"comment\":{}}],[\"occurencesoptions\",{\"_index\":33,\"name\":{\"37\":{}},\"comment\":{}}],[\"occurrences\",{\"_index\":32,\"name\":{\"36\":{}},\"comment\":{}}],[\"omit\",{\"_index\":35,\"name\":{\"39\":{}},\"comment\":{}}],[\"overlap\",{\"_index\":34,\"name\":{\"38\":{}},\"comment\":{}}],[\"pick\",{\"_index\":36,\"name\":{\"40\":{}},\"comment\":{}}],[\"pull\",{\"_index\":37,\"name\":{\"41\":{}},\"comment\":{}}],[\"remove\",{\"_index\":38,\"name\":{\"42\":{}},\"comment\":{}}],[\"rethrow\",{\"_index\":39,\"name\":{\"43\":{}},\"comment\":{}}],[\"scale\",{\"_index\":40,\"name\":{\"44\":{}},\"comment\":{}}],[\"seq\",{\"_index\":41,\"name\":{\"45\":{}},\"comment\":{}}],[\"seqearlybreak\",{\"_index\":42,\"name\":{\"46\":{}},\"comment\":{}}],[\"seqearlybreaker\",{\"_index\":43,\"name\":{\"47\":{}},\"comment\":{}}],[\"seqfn\",{\"_index\":45,\"name\":{\"50\":{}},\"comment\":{}}],[\"seqfunctions\",{\"_index\":44,\"name\":{\"49\":{}},\"comment\":{}}],[\"set\",{\"_index\":46,\"name\":{\"52\":{}},\"comment\":{}}],[\"setimmutable\",{\"_index\":48,\"name\":{\"54\":{}},\"comment\":{}}],[\"setimmutablepath\",{\"_index\":49,\"name\":{\"55\":{}},\"comment\":{}}],[\"setimmutablesource\",{\"_index\":50,\"name\":{\"56\":{}},\"comment\":{}}],[\"setsource\",{\"_index\":47,\"name\":{\"53\":{}},\"comment\":{}}],[\"sortby\",{\"_index\":51,\"name\":{\"57\":{}},\"comment\":{}}],[\"throttle\",{\"_index\":52,\"name\":{\"59\":{}},\"comment\":{}}],[\"throttledfunction\",{\"_index\":59,\"name\":{\"68\":{}},\"comment\":{}}],[\"throttledfunctionextras\",{\"_index\":53,\"name\":{\"60\":{}},\"comment\":{}}],[\"throttleoptions\",{\"_index\":56,\"name\":{\"65\":{}},\"comment\":{}}],[\"trailing\",{\"_index\":58,\"name\":{\"67\":{}},\"comment\":{}}],[\"truthy\",{\"_index\":60,\"name\":{\"70\":{}},\"comment\":{}}],[\"unmatched\",{\"_index\":26,\"name\":{\"28\":{}},\"comment\":{}}],[\"wait\",{\"_index\":61,\"name\":{\"71\":{}},\"comment\":{}}],[\"waitfor\",{\"_index\":62,\"name\":{\"72\":{}},\"comment\":{}}],[\"waitsync\",{\"_index\":63,\"name\":{\"73\":{}},\"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.1.0</title><meta name="description" content="Documentation for @ezez/utils - v1.1.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.1.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.1.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/5697b5c/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,15 @@
|
|
|
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.1.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></ul></li></ul></div></details></nav>
|
|
64
64
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
65
65
|
<ul>
|
|
66
66
|
<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"><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>Get<wbr/>Multiple<wbr/>Source</a></li>
|
|
67
67
|
<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>
|
|
68
|
+
<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>
|
|
69
|
+
<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>
|
|
68
70
|
<li class="tsd-kind-interface"><a href="../interfaces/SetImmutableSource.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>Set<wbr/>Immutable<wbr/>Source</a></li>
|
|
69
71
|
<li class="tsd-kind-interface"><a href="../interfaces/SetSource.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>Set<wbr/>Source</a></li>
|
|
70
72
|
<li class="tsd-kind-interface"><a href="../interfaces/ThrottleOptions.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>Throttle<wbr/>Options</a></li>
|
|
@@ -87,6 +89,7 @@
|
|
|
87
89
|
<li class="tsd-kind-function"><a href="getMultiple.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>get<wbr/>Multiple</a></li>
|
|
88
90
|
<li class="tsd-kind-function"><a href="insertSeparator.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>insert<wbr/>Separator</a></li>
|
|
89
91
|
<li class="tsd-kind-function"><a href="isEmpty.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>is<wbr/>Empty</a></li>
|
|
92
|
+
<li class="tsd-kind-function"><a href="isNumericString.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>is<wbr/>Numeric<wbr/>String</a></li>
|
|
90
93
|
<li class="tsd-kind-function"><a href="isPlainObject.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>is<wbr/>Plain<wbr/>Object</a></li>
|
|
91
94
|
<li class="tsd-kind-function"><a href="last.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>last</a></li>
|
|
92
95
|
<li class="tsd-kind-function"><a href="mapAsync.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>map<wbr/>Async</a></li>
|
|
@@ -95,6 +98,7 @@
|
|
|
95
98
|
<li class="tsd-kind-function"><a href="merge.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>merge</a></li>
|
|
96
99
|
<li class="tsd-kind-function"><a href="mostFrequent.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>most<wbr/>Frequent</a></li>
|
|
97
100
|
<li class="tsd-kind-function"><a href="noop.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>noop</a></li>
|
|
101
|
+
<li class="tsd-kind-function"><a href="occurrences.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>occurrences</a></li>
|
|
98
102
|
<li class="tsd-kind-function"><a href="omit.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>omit</a></li>
|
|
99
103
|
<li class="tsd-kind-function"><a href="pick.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>pick</a></li>
|
|
100
104
|
<li class="tsd-kind-function"><a href="pull.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>pull</a></li>
|
|
@@ -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.1.0</title><meta name="description" content="Documentation for @ezez/utils - v1.1.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.1.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.1.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/5697b5c/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,15 @@
|
|
|
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.1.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></ul></li></ul></div></details></nav>
|
|
69
69
|
<nav class="tsd-navigation secondary menu-sticky">
|
|
70
70
|
<ul>
|
|
71
71
|
<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"><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>Get<wbr/>Multiple<wbr/>Source</a></li>
|
|
72
72
|
<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>
|
|
73
|
+
<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>
|
|
74
|
+
<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>
|
|
73
75
|
<li class="tsd-kind-interface"><a href="../interfaces/SetImmutableSource.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>Set<wbr/>Immutable<wbr/>Source</a></li>
|
|
74
76
|
<li class="tsd-kind-interface"><a href="../interfaces/SetSource.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>Set<wbr/>Source</a></li>
|
|
75
77
|
<li class="tsd-kind-interface"><a href="../interfaces/ThrottleOptions.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>Throttle<wbr/>Options</a></li>
|
|
@@ -92,6 +94,7 @@
|
|
|
92
94
|
<li class="tsd-kind-function"><a href="getMultiple.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>get<wbr/>Multiple</a></li>
|
|
93
95
|
<li class="tsd-kind-function"><a href="insertSeparator.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>insert<wbr/>Separator</a></li>
|
|
94
96
|
<li class="tsd-kind-function"><a href="isEmpty.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>is<wbr/>Empty</a></li>
|
|
97
|
+
<li class="tsd-kind-function"><a href="isNumericString.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>is<wbr/>Numeric<wbr/>String</a></li>
|
|
95
98
|
<li class="tsd-kind-function"><a href="isPlainObject.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>is<wbr/>Plain<wbr/>Object</a></li>
|
|
96
99
|
<li class="tsd-kind-function"><a href="last.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>last</a></li>
|
|
97
100
|
<li class="tsd-kind-function"><a href="mapAsync.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>map<wbr/>Async</a></li>
|
|
@@ -100,6 +103,7 @@
|
|
|
100
103
|
<li class="tsd-kind-function"><a href="merge.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>merge</a></li>
|
|
101
104
|
<li class="tsd-kind-function"><a href="mostFrequent.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>most<wbr/>Frequent</a></li>
|
|
102
105
|
<li class="tsd-kind-function"><a href="noop.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>noop</a></li>
|
|
106
|
+
<li class="tsd-kind-function"><a href="occurrences.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>occurrences</a></li>
|
|
103
107
|
<li class="tsd-kind-function"><a href="omit.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>omit</a></li>
|
|
104
108
|
<li class="tsd-kind-function"><a href="pick.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>pick</a></li>
|
|
105
109
|
<li class="tsd-kind-function"><a href="pull.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>pull</a></li>
|