inferred-types 0.53.3 → 0.53.4

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.
@@ -1,4 +1,453 @@
1
- 'use strict';
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/index.ts
21
+ var src_exports = {};
22
+ __export(src_exports, {
23
+ ShapeApiImplementation: () => ShapeApiImplementation,
24
+ addFnToProps: () => addFnToProps,
25
+ addPropsToFn: () => addPropsToFn,
26
+ and: () => and,
27
+ asApi: () => asApi,
28
+ asArray: () => asArray,
29
+ asChars: () => asChars,
30
+ asDate: () => asDate,
31
+ asEscapeFunction: () => asEscapeFunction,
32
+ asIsoDate: () => asIsoDate,
33
+ asOptionalParamFunction: () => asOptionalParamFunction,
34
+ asPhoneFormat: () => asPhoneFormat,
35
+ asRecord: () => asRecord,
36
+ asString: () => asString,
37
+ asStringLiteral: () => asStringLiteral,
38
+ asType: () => asType,
39
+ asTypeToken: () => asTypeToken,
40
+ asVueRef: () => asVueRef,
41
+ box: () => box,
42
+ boxDictionaryValues: () => boxDictionaryValues,
43
+ capitalize: () => capitalize,
44
+ choices: () => choices,
45
+ createConverter: () => createConverter,
46
+ createCssKeyframe: () => createCssKeyframe,
47
+ createCssSelector: () => createCssSelector,
48
+ createErrorCondition: () => createErrorCondition,
49
+ createFifoQueue: () => createFifoQueue,
50
+ createFnWithProps: () => createFnWithProps,
51
+ createLifoQueue: () => createLifoQueue,
52
+ createTypeToken: () => createTypeToken,
53
+ cssColor: () => cssColor,
54
+ csv: () => csv,
55
+ defineCss: () => defineCss,
56
+ defineObj: () => defineObj,
57
+ defineTuple: () => defineTuple,
58
+ endsWith: () => endsWith,
59
+ ensureLeading: () => ensureLeading,
60
+ ensureSurround: () => ensureSurround,
61
+ ensureTrailing: () => ensureTrailing,
62
+ entries: () => entries,
63
+ errCondition: () => errCondition,
64
+ filter: () => filter,
65
+ find: () => find,
66
+ fnMeta: () => fnMeta,
67
+ get: () => get,
68
+ getDaysBetween: () => getDaysBetween,
69
+ getEach: () => getEach,
70
+ getPhoneCountryCode: () => getPhoneCountryCode,
71
+ getTailwindModifiers: () => getTailwindModifiers,
72
+ getToday: () => getToday,
73
+ getTomorrow: () => getTomorrow,
74
+ getUrlPath: () => getUrlPath,
75
+ getUrlPort: () => getUrlPort,
76
+ getUrlProtocol: () => getUrlProtocol,
77
+ getUrlQueryParams: () => getUrlQueryParams,
78
+ getUrlSource: () => getUrlSource,
79
+ getWeekNumber: () => getWeekNumber,
80
+ getYesterday: () => getYesterday,
81
+ getYouTubePageType: () => getYouTubePageType,
82
+ handleDoneFn: () => handleDoneFn,
83
+ hasDefaultValue: () => hasDefaultValue,
84
+ hasIndexOf: () => hasIndexOf,
85
+ hasKeys: () => hasKeys,
86
+ hasUrlPort: () => hasUrlPort,
87
+ hasUrlQueryParameter: () => hasUrlQueryParameter,
88
+ hasWhiteSpace: () => hasWhiteSpace,
89
+ idLiteral: () => idLiteral,
90
+ idTypeGuard: () => idTypeGuard,
91
+ identity: () => identity,
92
+ ifArray: () => ifArray,
93
+ ifArrayPartial: () => ifArrayPartial,
94
+ ifBoolean: () => ifBoolean,
95
+ ifChar: () => ifChar,
96
+ ifContainer: () => ifContainer,
97
+ ifDefined: () => ifDefined,
98
+ ifFalse: () => ifFalse,
99
+ ifFunction: () => ifFunction,
100
+ ifHasKey: () => ifHasKey,
101
+ ifLength: () => ifLength,
102
+ ifLowercaseChar: () => ifLowercaseChar,
103
+ ifNotNull: () => ifNotNull,
104
+ ifNull: () => ifNull,
105
+ ifNumber: () => ifNumber,
106
+ ifObject: () => ifObject,
107
+ ifSameType: () => ifSameType,
108
+ ifScalar: () => ifScalar,
109
+ ifString: () => ifString,
110
+ ifTrue: () => ifTrue,
111
+ ifUndefined: () => ifUndefined,
112
+ ifUppercaseChar: () => ifUppercaseChar,
113
+ indexOf: () => indexOf,
114
+ intersect: () => intersect,
115
+ intersection: () => intersection,
116
+ ip6GroupExpansion: () => ip6GroupExpansion,
117
+ ip6Prefix: () => ip6Prefix,
118
+ isAccelerationMetric: () => isAccelerationMetric,
119
+ isAccelerationUom: () => isAccelerationUom,
120
+ isAlpha: () => isAlpha,
121
+ isAmazonUrl: () => isAmazonUrl,
122
+ isApi: () => isApi,
123
+ isApiSurface: () => isApiSurface,
124
+ isAppleUrl: () => isAppleUrl,
125
+ isAreaMetric: () => isAreaMetric,
126
+ isAreaUom: () => isAreaUom,
127
+ isArray: () => isArray,
128
+ isArrayToken: () => isArrayToken,
129
+ isAtomicToken: () => isAtomicToken,
130
+ isAustralianNewsUrl: () => isAustralianNewsUrl,
131
+ isBelgiumNewsUrl: () => isBelgiumNewsUrl,
132
+ isBestBuyUrl: () => isBestBuyUrl,
133
+ isBitbucketUrl: () => isBitbucketUrl,
134
+ isBoolean: () => isBoolean,
135
+ isBooleanLike: () => isBooleanLike,
136
+ isBox: () => isBox,
137
+ isCanadianNewsUrl: () => isCanadianNewsUrl,
138
+ isChineseNewsUrl: () => isChineseNewsUrl,
139
+ isCodeCommitUrl: () => isCodeCommitUrl,
140
+ isConstant: () => isConstant,
141
+ isContainer: () => isContainer,
142
+ isContainerToken: () => isContainerToken,
143
+ isCostCoUrl: () => isCostCoUrl,
144
+ isCountryAbbrev: () => isCountryAbbrev,
145
+ isCountryCode2: () => isCountryCode2,
146
+ isCountryCode3: () => isCountryCode3,
147
+ isCountryName: () => isCountryName,
148
+ isCssAspectRatio: () => isCssAspectRatio,
149
+ isCurrentMetric: () => isCurrentMetric,
150
+ isCurrentUom: () => isCurrentUom,
151
+ isCvsUrl: () => isCvsUrl,
152
+ isDanishNewsUrl: () => isDanishNewsUrl,
153
+ isDate: () => isDate,
154
+ isDefineObject: () => isDefineObject,
155
+ isDefined: () => isDefined,
156
+ isDellUrl: () => isDellUrl,
157
+ isDistanceMetric: () => isDistanceMetric,
158
+ isDistanceUom: () => isDistanceUom,
159
+ isDomainName: () => isDomainName,
160
+ isDoneFn: () => isDoneFn,
161
+ isDutchNewsUrl: () => isDutchNewsUrl,
162
+ isEbayUrl: () => isEbayUrl,
163
+ isEmail: () => isEmail,
164
+ isEnergyMetric: () => isEnergyMetric,
165
+ isEnergyUom: () => isEnergyUom,
166
+ isEqual: () => isEqual,
167
+ isErrorCondition: () => isErrorCondition,
168
+ isEscapeFunction: () => isEscapeFunction,
169
+ isEtsyUrl: () => isEtsyUrl,
170
+ isFalse: () => isFalse,
171
+ isFalsy: () => isFalsy,
172
+ isFnToken: () => isFnToken,
173
+ isFnWithParams: () => isFnWithParams,
174
+ isFrenchNewsUrl: () => isFrenchNewsUrl,
175
+ isFrequencyMetric: () => isFrequencyMetric,
176
+ isFrequencyUom: () => isFrequencyUom,
177
+ isFunction: () => isFunction,
178
+ isGeneratorToken: () => isGeneratorToken,
179
+ isGermanNewsUrl: () => isGermanNewsUrl,
180
+ isGithubIssueUrl: () => isGithubIssueUrl,
181
+ isGithubIssuesListUrl: () => isGithubIssuesListUrl,
182
+ isGithubOrgUrl: () => isGithubOrgUrl,
183
+ isGithubProjectUrl: () => isGithubProjectUrl,
184
+ isGithubProjectsListUrl: () => isGithubProjectsListUrl,
185
+ isGithubReleaseTagUrl: () => isGithubReleaseTagUrl,
186
+ isGithubReleasesListUrl: () => isGithubReleasesListUrl,
187
+ isGithubRepoReleaseTagUrl: () => isGithubRepoReleaseTagUrl,
188
+ isGithubRepoReleasesUrl: () => isGithubRepoReleasesUrl,
189
+ isGithubRepoUrl: () => isGithubRepoUrl,
190
+ isGithubUrl: () => isGithubUrl,
191
+ isHexadecimal: () => isHexadecimal,
192
+ isHmUrl: () => isHmUrl,
193
+ isHomeDepotUrl: () => isHomeDepotUrl,
194
+ isHtmlElement: () => isHtmlElement,
195
+ isIkeaUrl: () => isIkeaUrl,
196
+ isIndexable: () => isIndexable,
197
+ isIndianNewsUrl: () => isIndianNewsUrl,
198
+ isInlineSvg: () => isInlineSvg,
199
+ isIp4Address: () => isIp4Address,
200
+ isIp6Address: () => isIp6Address,
201
+ isIpAddress: () => isIpAddress,
202
+ isIso3166Alpha2: () => isIso3166Alpha2,
203
+ isIso3166Alpha3: () => isIso3166Alpha3,
204
+ isIso3166CountryCode: () => isIso3166CountryCode,
205
+ isIso3166CountryName: () => isIso3166CountryName,
206
+ isIsoDate: () => isIsoDate,
207
+ isIsoDateTime: () => isIsoDateTime,
208
+ isIsoExplicitDate: () => isIsoExplicitDate,
209
+ isIsoExplicitTime: () => isIsoExplicitTime,
210
+ isIsoImplicitDate: () => isIsoImplicitDate,
211
+ isIsoImplicitTime: () => isIsoImplicitTime,
212
+ isIsoTime: () => isIsoTime,
213
+ isIsoYear: () => isIsoYear,
214
+ isItalianNewsUrl: () => isItalianNewsUrl,
215
+ isJapaneseNewsUrl: () => isJapaneseNewsUrl,
216
+ isKrogersUrl: () => isKrogersUrl,
217
+ isLeapYear: () => isLeapYear,
218
+ isLength: () => isLength,
219
+ isLikeRegExp: () => isLikeRegExp,
220
+ isLowesUrl: () => isLowesUrl,
221
+ isLuminosityMetric: () => isLuminosityMetric,
222
+ isLuminosityUom: () => isLuminosityUom,
223
+ isLuxonDateTime: () => isLuxonDateTime,
224
+ isMacysUrl: () => isMacysUrl,
225
+ isMapToken: () => isMapToken,
226
+ isMassMetric: () => isMassMetric,
227
+ isMassUom: () => isMassUom,
228
+ isMetric: () => isMetric,
229
+ isMexicanNewsUrl: () => isMexicanNewsUrl,
230
+ isMoment: () => isMoment,
231
+ isNever: () => isNever,
232
+ isNewsUrl: () => isNewsUrl,
233
+ isNikeUrl: () => isNikeUrl,
234
+ isNorwegianNewsUrl: () => isNorwegianNewsUrl,
235
+ isNotNull: () => isNotNull,
236
+ isNothing: () => isNothing,
237
+ isNull: () => isNull,
238
+ isNumber: () => isNumber,
239
+ isNumberLike: () => isNumberLike,
240
+ isNumericArray: () => isNumericArray,
241
+ isNumericString: () => isNumericString,
242
+ isObject: () => isObject,
243
+ isObjectToken: () => isObjectToken,
244
+ isOptionalParamFunction: () => isOptionalParamFunction,
245
+ isPhoneNumber: () => isPhoneNumber,
246
+ isPowerMetric: () => isPowerMetric,
247
+ isPowerUom: () => isPowerUom,
248
+ isPressureMetric: () => isPressureMetric,
249
+ isPressureUom: () => isPressureUom,
250
+ isReadonlyArray: () => isReadonlyArray,
251
+ isRecordToken: () => isRecordToken,
252
+ isRef: () => isRef,
253
+ isRegExp: () => isRegExp,
254
+ isRepoSource: () => isRepoSource,
255
+ isRepoUrl: () => isRepoUrl,
256
+ isResistance: () => isResistance,
257
+ isResistanceUom: () => isResistanceUom,
258
+ isRetailUrl: () => isRetailUrl,
259
+ isSameTypeOf: () => isSameTypeOf,
260
+ isScalar: () => isScalar,
261
+ isSemanticVersion: () => isSemanticVersion,
262
+ isSet: () => isSet,
263
+ isSetToken: () => isSetToken,
264
+ isShape: () => isShape,
265
+ isShapeCallback: () => isShapeCallback,
266
+ isSimpleContainerToken: () => isSimpleContainerToken,
267
+ isSimpleContainerTokenTuple: () => isSimpleContainerTokenTuple,
268
+ isSimpleScalarToken: () => isSimpleScalarToken,
269
+ isSimpleScalarTokenTuple: () => isSimpleScalarTokenTuple,
270
+ isSimpleToken: () => isSimpleToken,
271
+ isSimpleTokenTuple: () => isSimpleTokenTuple,
272
+ isSingletonToken: () => isSingletonToken,
273
+ isSocialMediaProfileUrl: () => isSocialMediaProfileUrl,
274
+ isSocialMediaUrl: () => isSocialMediaUrl,
275
+ isSouthKoreanNewsUrl: () => isSouthKoreanNewsUrl,
276
+ isSpanishNewsUrl: () => isSpanishNewsUrl,
277
+ isSpecificConstant: () => isSpecificConstant,
278
+ isSpeedMetric: () => isSpeedMetric,
279
+ isSpeedUom: () => isSpeedUom,
280
+ isString: () => isString,
281
+ isStringArray: () => isStringArray,
282
+ isSwissNewsUrl: () => isSwissNewsUrl,
283
+ isSymbol: () => isSymbol,
284
+ isTailwindColor: () => isTailwindColor,
285
+ isTailwindColorClass: () => isTailwindColorClass,
286
+ isTailwindColorName: () => isTailwindColorName,
287
+ isTailwindColorTarget: () => isTailwindColorTarget,
288
+ isTailwindColorWithLuminosity: () => isTailwindColorWithLuminosity,
289
+ isTailwindColorWithLuminosityAndOpacity: () => isTailwindColorWithLuminosityAndOpacity,
290
+ isTailwindModifier: () => isTailwindModifier,
291
+ isTargetUrl: () => isTargetUrl,
292
+ isTemperatureMetric: () => isTemperatureMetric,
293
+ isTemperatureUom: () => isTemperatureUom,
294
+ isThenable: () => isThenable,
295
+ isThisMonth: () => isThisMonth,
296
+ isThisWeek: () => isThisWeek,
297
+ isThisYear: () => isThisYear,
298
+ isTimeMetric: () => isTimeMetric,
299
+ isTimeUom: () => isTimeUom,
300
+ isToday: () => isToday,
301
+ isTomorrow: () => isTomorrow,
302
+ isTrimable: () => isTrimable,
303
+ isTrue: () => isTrue,
304
+ isTruthy: () => isTruthy,
305
+ isTuple: () => isTuple,
306
+ isTupleToken: () => isTupleToken,
307
+ isTurkishNewsUrl: () => isTurkishNewsUrl,
308
+ isTypeOf: () => isTypeOf,
309
+ isTypeToken: () => isTypeToken,
310
+ isTypeTuple: () => isTypeTuple,
311
+ isUkNewsUrl: () => isUkNewsUrl,
312
+ isUndefined: () => isUndefined,
313
+ isUnionSetToken: () => isUnionSetToken,
314
+ isUnionToken: () => isUnionToken,
315
+ isUnset: () => isUnset,
316
+ isUom: () => isUom,
317
+ isUri: () => isUri,
318
+ isUrl: () => isUrl,
319
+ isUrlPath: () => isUrlPath,
320
+ isUrlSource: () => isUrlSource,
321
+ isUsNewsUrl: () => isUsNewsUrl,
322
+ isUsStateAbbreviation: () => isUsStateAbbreviation,
323
+ isUsStateName: () => isUsStateName,
324
+ isVoltageMetric: () => isVoltageMetric,
325
+ isVoltageUom: () => isVoltageUom,
326
+ isVolumeMetric: () => isVolumeMetric,
327
+ isVolumeUom: () => isVolumeUom,
328
+ isWalgreensUrl: () => isWalgreensUrl,
329
+ isWalmartUrl: () => isWalmartUrl,
330
+ isWayfairUrl: () => isWayfairUrl,
331
+ isWeakMapToken: () => isWeakMapToken,
332
+ isWholeFoodsUrl: () => isWholeFoodsUrl,
333
+ isYesterday: () => isYesterday,
334
+ isYouTubeCreatorUrl: () => isYouTubeCreatorUrl,
335
+ isYouTubeFeedHistoryUrl: () => isYouTubeFeedHistoryUrl,
336
+ isYouTubeFeedUrl: () => isYouTubeFeedUrl,
337
+ isYouTubePlaylistUrl: () => isYouTubePlaylistUrl,
338
+ isYouTubePlaylistsUrl: () => isYouTubePlaylistsUrl,
339
+ isYouTubeShareUrl: () => isYouTubeShareUrl,
340
+ isYouTubeSubscriptionsUrl: () => isYouTubeSubscriptionsUrl,
341
+ isYouTubeTrendingUrl: () => isYouTubeTrendingUrl,
342
+ isYouTubeUrl: () => isYouTubeUrl,
343
+ isYouTubeVideoUrl: () => isYouTubeVideoUrl,
344
+ isYouTubeVideosInPlaylist: () => isYouTubeVideosInPlaylist,
345
+ isZaraUrl: () => isZaraUrl,
346
+ isZipCode: () => isZipCode,
347
+ isZipCode5: () => isZipCode5,
348
+ isZipPlus4: () => isZipPlus4,
349
+ joinWith: () => joinWith,
350
+ jsonValue: () => jsonValue,
351
+ jsonValues: () => jsonValues,
352
+ keysOf: () => keysOf,
353
+ kindLiteral: () => kindLiteral,
354
+ last: () => last,
355
+ list: () => list,
356
+ literal: () => literal,
357
+ logicalReturns: () => logicalReturns,
358
+ lookupCountryAlpha2: () => lookupCountryAlpha2,
359
+ lookupCountryAlpha3: () => lookupCountryAlpha3,
360
+ lookupCountryCode: () => lookupCountryCode,
361
+ lookupCountryName: () => lookupCountryName,
362
+ lowercase: () => lowercase,
363
+ mergeObjects: () => mergeObjects,
364
+ mergeScalars: () => mergeScalars,
365
+ mergeTuples: () => mergeTuples,
366
+ nameLiteral: () => nameLiteral,
367
+ narrow: () => narrow,
368
+ never: () => never,
369
+ omit: () => omit,
370
+ optional: () => optional,
371
+ optionalOrNull: () => optionalOrNull,
372
+ or: () => or,
373
+ orNull: () => orNull,
374
+ pathJoin: () => pathJoin,
375
+ pluralize: () => pluralize,
376
+ removePhoneCountryCode: () => removePhoneCountryCode,
377
+ removeTailwindModifiers: () => removeTailwindModifiers,
378
+ removeUrlProtocol: () => removeUrlProtocol,
379
+ result: () => result,
380
+ retain: () => retain,
381
+ retainAfter: () => retainAfter,
382
+ retainAfterInclusive: () => retainAfterInclusive,
383
+ retainChars: () => retainChars,
384
+ retainUntil: () => retainUntil,
385
+ retainUntilInclusive: () => retainUntilInclusive,
386
+ retainWhile: () => retainWhile,
387
+ reverse: () => reverse,
388
+ rightWhitespace: () => rightWhitespace,
389
+ shape: () => shape,
390
+ sharedKeys: () => sharedKeys,
391
+ shift: () => shift,
392
+ simpleContainerToken: () => simpleContainerToken,
393
+ simpleContainerTokenToTypeToken: () => simpleContainerTokenToTypeToken,
394
+ simpleContainerType: () => simpleContainerType,
395
+ simpleScalarToken: () => simpleScalarToken,
396
+ simpleScalarTokenToTypeToken: () => simpleScalarTokenToTypeToken,
397
+ simpleScalarType: () => simpleScalarType,
398
+ simpleToken: () => simpleToken,
399
+ simpleType: () => simpleType,
400
+ simpleUnionTokenToTypeToken: () => simpleUnionTokenToTypeToken,
401
+ slice: () => slice,
402
+ split: () => split,
403
+ startsWith: () => startsWith,
404
+ stripAfter: () => stripAfter,
405
+ stripBefore: () => stripBefore,
406
+ stripChars: () => stripChars,
407
+ stripLeading: () => stripLeading,
408
+ stripParenthesis: () => stripParenthesis,
409
+ stripSurround: () => stripSurround,
410
+ stripTrailing: () => stripTrailing,
411
+ stripUntil: () => stripUntil,
412
+ stripWhile: () => stripWhile,
413
+ surround: () => surround,
414
+ takeNumericCharacters: () => takeNumericCharacters,
415
+ takeProp: () => takeProp,
416
+ toCamelCase: () => toCamelCase,
417
+ toKebabCase: () => toKebabCase,
418
+ toNumber: () => toNumber,
419
+ toNumericArray: () => toNumericArray,
420
+ toPascalCase: () => toPascalCase,
421
+ toSnakeCase: () => toSnakeCase,
422
+ toString: () => toString,
423
+ toUppercase: () => toUppercase,
424
+ trim: () => trim,
425
+ trimEnd: () => trimEnd,
426
+ trimLeft: () => trimLeft,
427
+ trimRight: () => trimRight,
428
+ trimStart: () => trimStart,
429
+ truncate: () => truncate,
430
+ tuple: () => tuple,
431
+ twColor: () => twColor,
432
+ unbox: () => unbox,
433
+ uncapitalize: () => uncapitalize,
434
+ union: () => union,
435
+ unionize: () => unionize,
436
+ unique: () => unique,
437
+ uniqueKeys: () => uniqueKeys,
438
+ uppercase: () => uppercase,
439
+ urlMeta: () => urlMeta,
440
+ valuesOf: () => valuesOf,
441
+ widen: () => widen,
442
+ withDefaults: () => withDefaults,
443
+ withKeys: () => withKeys,
444
+ withoutKeys: () => withoutKeys,
445
+ withoutValue: () => withoutValue,
446
+ wrapFn: () => wrapFn,
447
+ youtubeEmbed: () => youtubeEmbed,
448
+ youtubeMeta: () => youtubeMeta
449
+ });
450
+ module.exports = __toCommonJS(src_exports);
2
451
 
3
452
  // src/api/defineApi.ts
4
453
  function asEscapeFunction(fn2) {
@@ -94,12 +543,21 @@ var ALPHA_CHARS = [
94
543
  ...LOWER_ALPHA_CHARS,
95
544
  ...UPPER_ALPHA_CHARS
96
545
  ];
546
+ var string = `{{ string }}`;
547
+ var AMAZON_BOOKS = [
548
+ `https://www.amazon.com/${string}storeType=ebooks${string}`,
549
+ `https://www.amazon.com/${string}ref=tmm_hrd_swatch${string}`,
550
+ `https://www.amazon.com/${string}ref=tmm_pap_swatch${string}`,
551
+ `https://www.amazon.com/${string}ref=tmm_aud_swatch${string}`,
552
+ `https://www.amazon.com/books-used-books-textbooks/${string}`
553
+ ];
97
554
  var WHITESPACE_CHARS = [
98
555
  " ",
99
556
  "\n",
100
557
  " ",
101
558
  "\b"
102
559
  ];
560
+ var COMMA = createConstant("comma");
103
561
  function createConstant(kind) {
104
562
  return {
105
563
  _type: "Constant",
@@ -182,6 +640,97 @@ var US_STATE_LOOKUP = [
182
640
  ...US_STATE_LOOKUP_STRICT,
183
641
  ...US_STATE_LOOKUP_PROVINCES
184
642
  ];
643
+ var HASH_TABLE_ALPHA_LOWER = {
644
+ a: "8",
645
+ b: "~",
646
+ c: "^",
647
+ d: ".",
648
+ e: "82",
649
+ f: "89",
650
+ g: ",",
651
+ h: "!",
652
+ i: "-7",
653
+ j: "-8",
654
+ k: "88",
655
+ l: "8f",
656
+ m: "8e",
657
+ n: "6e",
658
+ o: "44",
659
+ p: "60",
660
+ q: "61",
661
+ r: "71",
662
+ s: ":",
663
+ t: "-45",
664
+ u: "-5",
665
+ v: "-9",
666
+ w: "-f",
667
+ x: "+1",
668
+ y: ";",
669
+ z: "*1"
670
+ };
671
+ var HASH_TABLE_SPECIAL = {
672
+ "!": "1",
673
+ "@": "8",
674
+ "#": "5",
675
+ "$": "4",
676
+ "%": "3",
677
+ "^": "2",
678
+ "&": "9",
679
+ "*": "7",
680
+ "(": "6",
681
+ ")": "12",
682
+ "{": "33",
683
+ "}": "54",
684
+ "[": "x8",
685
+ "]": "y4",
686
+ ":": "z2",
687
+ ";": "e88",
688
+ '"': "c11",
689
+ "'": "c12",
690
+ "<": "p3",
691
+ ",": "45",
692
+ ">": "e9",
693
+ ".": "f2",
694
+ "?": "ee",
695
+ "/": "u9",
696
+ "\\": "f9",
697
+ "|": "q1",
698
+ "~": "fe",
699
+ "`": "8e"
700
+ };
701
+ var HASH_TABLE_ALPHA_UPPER = {
702
+ A: "b8",
703
+ B: "~9",
704
+ C: "6^",
705
+ D: ".8",
706
+ E: "5<",
707
+ F: ">7",
708
+ G: "1,",
709
+ H: "!7",
710
+ I: "8#",
711
+ J: "@9",
712
+ K: "1*",
713
+ L: "4&",
714
+ M: "+5",
715
+ N: "j|",
716
+ O: "-l",
717
+ P: "q{",
718
+ Q: "]9",
719
+ R: "f%",
720
+ S: ":3",
721
+ T: "?+",
722
+ U: "}5",
723
+ V: "'4",
724
+ W: "1@g",
725
+ X: "0+1",
726
+ Y: "4;",
727
+ Z: "a*1"
728
+ };
729
+ var HASH_TABLE_CHAR = {
730
+ ...HASH_TABLE_ALPHA_LOWER,
731
+ ...HASH_TABLE_ALPHA_UPPER,
732
+ ...HASH_TABLE_SPECIAL
733
+ };
185
734
  var ISO3166_1 = [
186
735
  { name: "Afghanistan", alpha2: "AF", countryCode: "004", alpha3: "AFG" },
187
736
  { name: "Albania", alpha2: "AL", countryCode: "008", alpha3: "ALB" },
@@ -326,6 +875,7 @@ var ISO3166_1 = [
326
875
  { name: "Zambia", alpha2: "ZM", countryCode: "894", alpha3: "ZMB" },
327
876
  { name: "Zimbabwe", alpha2: "ZW", countryCode: "716", alpha3: "ZWE" }
328
877
  ];
878
+ var MARKED = createConstant("Marked");
329
879
  var DISTANCE_METRICS_LOOKUP = [
330
880
  { abbrev: "km", name: "kilometer" },
331
881
  { abbrev: "mi", name: "mile" },
@@ -905,6 +1455,7 @@ var NORWEGIAN_NEWS = [
905
1455
  { company: "Hamar Arbeiderblad", baseUrls: ["www.h-a.no"], type: ["newspaper", "digital"] }
906
1456
  ];
907
1457
  var NO_DEFAULT_VALUE = createConstant("no-default-value");
1458
+ var NOT_APPLICABLE = Symbol("not applicable");
908
1459
  var NOT_DEFINED = createConstant("not-defined");
909
1460
  var NUMERIC_CHAR = [
910
1461
  "0",
@@ -1293,17 +1844,17 @@ var TW_LUMINOSITY = {
1293
1844
  900: 32,
1294
1845
  950: 23.78
1295
1846
  };
1296
- TW_LUMINOSITY["50"];
1297
- TW_LUMINOSITY["100"];
1298
- TW_LUMINOSITY["200"];
1299
- TW_LUMINOSITY["300"];
1300
- TW_LUMINOSITY["400"];
1301
- TW_LUMINOSITY["500"];
1302
- TW_LUMINOSITY["600"];
1303
- TW_LUMINOSITY["700"];
1304
- TW_LUMINOSITY["800"];
1305
- TW_LUMINOSITY["900"];
1306
- TW_LUMINOSITY["950"];
1847
+ var TW_LUMIN_50 = TW_LUMINOSITY["50"];
1848
+ var TW_LUMIN_100 = TW_LUMINOSITY["100"];
1849
+ var TW_LUMIN_200 = TW_LUMINOSITY["200"];
1850
+ var TW_LUMIN_300 = TW_LUMINOSITY["300"];
1851
+ var TW_LUMIN_400 = TW_LUMINOSITY["400"];
1852
+ var TW_LUMIN_500 = TW_LUMINOSITY["500"];
1853
+ var TW_LUMIN_600 = TW_LUMINOSITY["600"];
1854
+ var TW_LUMIN_700 = TW_LUMINOSITY["700"];
1855
+ var TW_LUMIN_800 = TW_LUMINOSITY["800"];
1856
+ var TW_LUMIN_900 = TW_LUMINOSITY["900"];
1857
+ var TW_LUMIN_950 = TW_LUMINOSITY["950"];
1307
1858
  var TW_CHROMA = {
1308
1859
  50: 0.0108,
1309
1860
  100: 0.0321,
@@ -1317,17 +1868,17 @@ var TW_CHROMA = {
1317
1868
  900: 0.0726,
1318
1869
  950: 0.054
1319
1870
  };
1320
- TW_CHROMA["50"];
1321
- TW_CHROMA["100"];
1322
- TW_CHROMA["200"];
1323
- TW_CHROMA["300"];
1324
- TW_CHROMA["400"];
1325
- TW_CHROMA["500"];
1326
- TW_CHROMA["600"];
1327
- TW_CHROMA["700"];
1328
- TW_CHROMA["800"];
1329
- TW_CHROMA["900"];
1330
- TW_CHROMA["950"];
1871
+ var TW_CHROMA_50 = TW_CHROMA["50"];
1872
+ var TW_CHROMA_100 = TW_CHROMA["100"];
1873
+ var TW_CHROMA_200 = TW_CHROMA["200"];
1874
+ var TW_CHROMA_300 = TW_CHROMA["300"];
1875
+ var TW_CHROMA_400 = TW_CHROMA["400"];
1876
+ var TW_CHROMA_500 = TW_CHROMA["500"];
1877
+ var TW_CHROMA_600 = TW_CHROMA["600"];
1878
+ var TW_CHROMA_700 = TW_CHROMA["700"];
1879
+ var TW_CHROMA_800 = TW_CHROMA["800"];
1880
+ var TW_CHROMA_900 = TW_CHROMA["900"];
1881
+ var TW_CHROMA_950 = TW_CHROMA["950"];
1331
1882
  var TW_COLOR_TARGETS = [
1332
1883
  "bg",
1333
1884
  "text",
@@ -1399,7 +1950,7 @@ function entry(refType, desc, ...params) {
1399
1950
  )
1400
1951
  ];
1401
1952
  }
1402
- ({
1953
+ var TYPE_COMPARISONS = {
1403
1954
  Extends: entry((t) => t.unknown(), "extends the type", (t) => t.unknown()),
1404
1955
  NotExtends: entry((t) => t.unknown(), "does not extent the type", (t) => t.unknown()),
1405
1956
  Equals: entry((t) => t.unknown(), "equals the type", (t) => t.unknown()),
@@ -1430,7 +1981,46 @@ function entry(refType, desc, ...params) {
1430
1981
  Contains: entry((t) => t.tuple(), "must be a tuple and have elements that extends the value [[0]]", (t) => t.unknown()),
1431
1982
  // TODO: get the below working`
1432
1983
  ContainsSome: entry((t) => t.tuple(), "must be a tuple and have elements that extends the value [[0]]", (t) => t.singularTuple())
1433
- });
1984
+ };
1985
+ var FALSY_TYPE_KINDS = [
1986
+ "undefined",
1987
+ "null"
1988
+ ];
1989
+ var LITERAL_TYPE_KINDS = [
1990
+ "true",
1991
+ "false",
1992
+ "stringLiteral",
1993
+ "numericLiteral"
1994
+ ];
1995
+ var WIDE_TYPE_KINDS = [
1996
+ "string",
1997
+ "number",
1998
+ "boolean"
1999
+ ];
2000
+ var NARROW_CONTAINER_TYPE_KINDS = [
2001
+ "object",
2002
+ "explicitFunctions",
2003
+ "fnType",
2004
+ "fnWithDict",
2005
+ "tuple",
2006
+ "union",
2007
+ "intersection",
2008
+ "arrayOf"
2009
+ ];
2010
+ var WIDE_CONTAINER_TYPE_KINDS = [
2011
+ "anyArray",
2012
+ "anyObject",
2013
+ "unknownObject",
2014
+ "anyFunction",
2015
+ "emptyObject"
2016
+ ];
2017
+ var TYPE_KINDS = [
2018
+ ...FALSY_TYPE_KINDS,
2019
+ ...WIDE_TYPE_KINDS,
2020
+ ...LITERAL_TYPE_KINDS,
2021
+ ...NARROW_CONTAINER_TYPE_KINDS,
2022
+ ...WIDE_CONTAINER_TYPE_KINDS
2023
+ ];
1434
2024
  var SIMPLE_SCALAR_TOKENS = [
1435
2025
  "string",
1436
2026
  "number",
@@ -1462,6 +2052,30 @@ var SIMPLE_OPT_SCALAR_TOKENS = [
1462
2052
  var SIMPLE_UNION_TOKENS = [
1463
2053
  `Union(TOKEN)`
1464
2054
  ];
2055
+ var SIMPLE_MAP_KEYS = [
2056
+ "string",
2057
+ "number",
2058
+ "Dict",
2059
+ "Dict<string, string>",
2060
+ "Dict<string, number>",
2061
+ "Dict<string, boolean>",
2062
+ "Dict<string, unknown>",
2063
+ "Dict<string, Opt<string>>",
2064
+ "Dict<string, Opt<number>>",
2065
+ "Dict<string, Opt<boolean>>"
2066
+ ];
2067
+ var SIMPLE_MAP_VALUES = [
2068
+ ...SIMPLE_MAP_KEYS,
2069
+ "boolean",
2070
+ "unknown",
2071
+ "undefined",
2072
+ "Dict",
2073
+ "Array",
2074
+ "Dict<string, Opt<string>>",
2075
+ "Dict<string, Opt<number>>",
2076
+ "Dict<string, Opt<boolean>>",
2077
+ "Dict<string, Opt<unknown>>"
2078
+ ];
1465
2079
  var SIMPLE_DICT_TOKENS = [
1466
2080
  "Dict",
1467
2081
  "Dict<string, string>",
@@ -1537,6 +2151,68 @@ var TT_Containers = [
1537
2151
  "obj",
1538
2152
  "tuple"
1539
2153
  ];
2154
+ var TYPE_TOKEN_IDENTITIES = [
2155
+ "string",
2156
+ "number",
2157
+ "numericString",
2158
+ "booleanString",
2159
+ "null",
2160
+ "undefined",
2161
+ "boolean",
2162
+ "true",
2163
+ "false",
2164
+ "space",
2165
+ "whitespace",
2166
+ "object",
2167
+ "emptyObject",
2168
+ "function",
2169
+ "array"
2170
+ ];
2171
+ var TYPE_TOKEN_PARAM_STR = [
2172
+ "explicitClass",
2173
+ "startsWith",
2174
+ "endsWith",
2175
+ "ensureLeading",
2176
+ "stripLeading",
2177
+ "ensureTrailing",
2178
+ "stripTrailing",
2179
+ "camelCase",
2180
+ "pascalCase",
2181
+ "snakeCase",
2182
+ "kebabCase",
2183
+ "explicitType"
2184
+ ];
2185
+ var TYPE_TOKEN_PARAM_CSV = [
2186
+ "stringLiteral",
2187
+ "numericLiteral",
2188
+ "objectLiteral",
2189
+ "tuple",
2190
+ "union"
2191
+ ];
2192
+ var TYPE_TOKEN_PARAM_DATETIME = [
2193
+ "datetime"
2194
+ ];
2195
+ var TYPE_TOKEN_PARAM_DATE = [
2196
+ "ymd",
2197
+ "monthThenDate",
2198
+ "dateThenMonth"
2199
+ ];
2200
+ var TYPE_TOKEN_PARAM_TIME = [
2201
+ "timeInMinutes",
2202
+ "timeInSeconds",
2203
+ "militaryTimeInMinutes",
2204
+ "militaryTimeInSeconds",
2205
+ "militaryTimeInMilliseconds",
2206
+ "civilianTimeInMinutes"
2207
+ ];
2208
+ var TYPE_TOKEN_ALL = [
2209
+ ...TYPE_TOKEN_IDENTITIES,
2210
+ ...TYPE_TOKEN_PARAM_CSV,
2211
+ ...TYPE_TOKEN_PARAM_DATE,
2212
+ ...TYPE_TOKEN_PARAM_DATETIME,
2213
+ ...TYPE_TOKEN_PARAM_STR,
2214
+ ...TYPE_TOKEN_PARAM_TIME
2215
+ ];
1540
2216
 
1541
2217
  // src/boolean-logic/ifChar.ts
1542
2218
  var def_if = (v) => v;
@@ -1706,6 +2382,23 @@ ${frameToCss(frames)}
1706
2382
  };
1707
2383
  }
1708
2384
 
2385
+ // src/css/defineCss.ts
2386
+ function createCss(defn, indent = "") {
2387
+ return Object.keys(defn).map((key) => `${indent}${key}: ${ensureTrailing(defn[key], ";")}
2388
+ `).join("");
2389
+ }
2390
+ function defineCss(defn) {
2391
+ const fn2 = (selector) => {
2392
+ return selector ? `${selector} {
2393
+ ${createCss(defn, " ")}}
2394
+ ` : createCss(defn);
2395
+ };
2396
+ return createFnWithProps(
2397
+ fn2,
2398
+ { defn }
2399
+ );
2400
+ }
2401
+
1709
2402
  // src/datetime/asDate.ts
1710
2403
  function asDate(input) {
1711
2404
  if (isDate(input)) {
@@ -2441,10 +3134,12 @@ function isIsoDateTime(val) {
2441
3134
  if (month < 1 || month > 12) {
2442
3135
  return false;
2443
3136
  }
3137
+ ;
2444
3138
  const daysInMonth = new Date(year, month, 0).getDate();
2445
3139
  if (day < 1 || day > daysInMonth) {
2446
3140
  return false;
2447
3141
  }
3142
+ ;
2448
3143
  const tzMatch = val.match(/([+-])(\d{2}):(\d{2})$/);
2449
3144
  if (tzMatch) {
2450
3145
  const [_2, _sign, tzHours, tzMinutes] = tzMatch;
@@ -4166,7 +4861,7 @@ function simpleScalarTokenToTypeToken(val) {
4166
4861
  return val in scalarToToken ? scalarToToken[val] : val.startsWith("string(") ? stringLiteral(val).includes(",") ? `<<union::[ ${stringLiteral(val).split(/,\s?/).map((i) => `"${i}"`).join(", ")} ]>>` : `<<string::${stringLiteral(val)}>>` : val.startsWith("number(") ? numericLiteral(val).includes(",") ? `<<union::[ ${numericLiteral(val).split(/,\s?/).join(", ")} ]>>` : `<<number::${numericLiteral(val)}>>` : val.startsWith("Opt<") ? handleOptional(val) : `<<never>>`;
4167
4862
  }
4168
4863
  function unionNode(node) {
4169
- return isNumberLike(node) ? `<<number::${node}>>` : isBooleanLike(node) ? `<<${node}>>` : isSimpleContainerToken(node) ? simpleContainerTokenToTypeToken() : isSimpleScalarToken(node) ? simpleScalarToken(node) : `<<string::${node}>>`;
4864
+ return isNumberLike(node) ? `<<number::${node}>>` : isBooleanLike(node) ? `<<${node}>>` : isSimpleContainerToken(node) ? simpleContainerTokenToTypeToken(node) : isSimpleScalarToken(node) ? simpleScalarToken(node) : `<<string::${node}>>`;
4170
4865
  }
4171
4866
  function union2(nodes) {
4172
4867
  return Array.isArray(nodes) ? nodes.map((n) => unionNode(n)) : nodes.includes(",") ? nodes.split(/,\s?/).map((n) => unionNode(n)).join(", ") : unionNode(nodes);
@@ -4457,431 +5152,433 @@ function asVueRef(value) {
4457
5152
  _value: null
4458
5153
  };
4459
5154
  }
4460
-
4461
- exports.ShapeApiImplementation = ShapeApiImplementation;
4462
- exports.addFnToProps = addFnToProps;
4463
- exports.addPropsToFn = addPropsToFn;
4464
- exports.and = and;
4465
- exports.asApi = asApi;
4466
- exports.asArray = asArray;
4467
- exports.asChars = asChars;
4468
- exports.asDate = asDate;
4469
- exports.asEscapeFunction = asEscapeFunction;
4470
- exports.asIsoDate = asIsoDate;
4471
- exports.asOptionalParamFunction = asOptionalParamFunction;
4472
- exports.asPhoneFormat = asPhoneFormat;
4473
- exports.asRecord = asRecord;
4474
- exports.asString = asString;
4475
- exports.asStringLiteral = asStringLiteral;
4476
- exports.asType = asType;
4477
- exports.asTypeToken = asTypeToken;
4478
- exports.asVueRef = asVueRef;
4479
- exports.box = box;
4480
- exports.boxDictionaryValues = boxDictionaryValues;
4481
- exports.capitalize = capitalize;
4482
- exports.choices = choices;
4483
- exports.createConverter = createConverter;
4484
- exports.createCssKeyframe = createCssKeyframe;
4485
- exports.createCssSelector = createCssSelector;
4486
- exports.createErrorCondition = createErrorCondition;
4487
- exports.createFifoQueue = createFifoQueue;
4488
- exports.createFnWithProps = createFnWithProps;
4489
- exports.createLifoQueue = createLifoQueue;
4490
- exports.createTypeToken = createTypeToken;
4491
- exports.cssColor = cssColor;
4492
- exports.csv = csv;
4493
- exports.defineObj = defineObj;
4494
- exports.defineTuple = defineTuple;
4495
- exports.endsWith = endsWith;
4496
- exports.ensureLeading = ensureLeading;
4497
- exports.ensureSurround = ensureSurround;
4498
- exports.ensureTrailing = ensureTrailing;
4499
- exports.entries = entries;
4500
- exports.errCondition = errCondition;
4501
- exports.filter = filter;
4502
- exports.find = find;
4503
- exports.fnMeta = fnMeta;
4504
- exports.get = get;
4505
- exports.getDaysBetween = getDaysBetween;
4506
- exports.getEach = getEach;
4507
- exports.getPhoneCountryCode = getPhoneCountryCode;
4508
- exports.getTailwindModifiers = getTailwindModifiers;
4509
- exports.getToday = getToday;
4510
- exports.getTomorrow = getTomorrow;
4511
- exports.getUrlPath = getUrlPath;
4512
- exports.getUrlPort = getUrlPort;
4513
- exports.getUrlProtocol = getUrlProtocol;
4514
- exports.getUrlQueryParams = getUrlQueryParams;
4515
- exports.getUrlSource = getUrlSource;
4516
- exports.getWeekNumber = getWeekNumber;
4517
- exports.getYesterday = getYesterday;
4518
- exports.getYouTubePageType = getYouTubePageType;
4519
- exports.handleDoneFn = handleDoneFn;
4520
- exports.hasDefaultValue = hasDefaultValue;
4521
- exports.hasIndexOf = hasIndexOf;
4522
- exports.hasKeys = hasKeys;
4523
- exports.hasUrlPort = hasUrlPort;
4524
- exports.hasUrlQueryParameter = hasUrlQueryParameter;
4525
- exports.hasWhiteSpace = hasWhiteSpace;
4526
- exports.idLiteral = idLiteral;
4527
- exports.idTypeGuard = idTypeGuard;
4528
- exports.identity = identity;
4529
- exports.ifArray = ifArray;
4530
- exports.ifArrayPartial = ifArrayPartial;
4531
- exports.ifBoolean = ifBoolean;
4532
- exports.ifChar = ifChar;
4533
- exports.ifContainer = ifContainer;
4534
- exports.ifDefined = ifDefined;
4535
- exports.ifFalse = ifFalse;
4536
- exports.ifFunction = ifFunction;
4537
- exports.ifHasKey = ifHasKey;
4538
- exports.ifLength = ifLength;
4539
- exports.ifLowercaseChar = ifLowercaseChar;
4540
- exports.ifNotNull = ifNotNull;
4541
- exports.ifNull = ifNull;
4542
- exports.ifNumber = ifNumber;
4543
- exports.ifObject = ifObject;
4544
- exports.ifSameType = ifSameType;
4545
- exports.ifScalar = ifScalar;
4546
- exports.ifString = ifString;
4547
- exports.ifTrue = ifTrue;
4548
- exports.ifUndefined = ifUndefined;
4549
- exports.ifUppercaseChar = ifUppercaseChar;
4550
- exports.indexOf = indexOf;
4551
- exports.intersect = intersect;
4552
- exports.intersection = intersection;
4553
- exports.ip6GroupExpansion = ip6GroupExpansion;
4554
- exports.ip6Prefix = ip6Prefix;
4555
- exports.isAccelerationMetric = isAccelerationMetric;
4556
- exports.isAccelerationUom = isAccelerationUom;
4557
- exports.isAlpha = isAlpha;
4558
- exports.isAmazonUrl = isAmazonUrl;
4559
- exports.isApi = isApi;
4560
- exports.isApiSurface = isApiSurface;
4561
- exports.isAppleUrl = isAppleUrl;
4562
- exports.isAreaMetric = isAreaMetric;
4563
- exports.isAreaUom = isAreaUom;
4564
- exports.isArray = isArray;
4565
- exports.isArrayToken = isArrayToken;
4566
- exports.isAtomicToken = isAtomicToken;
4567
- exports.isAustralianNewsUrl = isAustralianNewsUrl;
4568
- exports.isBelgiumNewsUrl = isBelgiumNewsUrl;
4569
- exports.isBestBuyUrl = isBestBuyUrl;
4570
- exports.isBitbucketUrl = isBitbucketUrl;
4571
- exports.isBoolean = isBoolean;
4572
- exports.isBooleanLike = isBooleanLike;
4573
- exports.isBox = isBox;
4574
- exports.isCanadianNewsUrl = isCanadianNewsUrl;
4575
- exports.isChineseNewsUrl = isChineseNewsUrl;
4576
- exports.isCodeCommitUrl = isCodeCommitUrl;
4577
- exports.isConstant = isConstant;
4578
- exports.isContainer = isContainer;
4579
- exports.isContainerToken = isContainerToken;
4580
- exports.isCostCoUrl = isCostCoUrl;
4581
- exports.isCountryAbbrev = isCountryAbbrev;
4582
- exports.isCountryCode2 = isCountryCode2;
4583
- exports.isCountryCode3 = isCountryCode3;
4584
- exports.isCountryName = isCountryName;
4585
- exports.isCssAspectRatio = isCssAspectRatio;
4586
- exports.isCurrentMetric = isCurrentMetric;
4587
- exports.isCurrentUom = isCurrentUom;
4588
- exports.isCvsUrl = isCvsUrl;
4589
- exports.isDanishNewsUrl = isDanishNewsUrl;
4590
- exports.isDate = isDate;
4591
- exports.isDefineObject = isDefineObject;
4592
- exports.isDefined = isDefined;
4593
- exports.isDellUrl = isDellUrl;
4594
- exports.isDistanceMetric = isDistanceMetric;
4595
- exports.isDistanceUom = isDistanceUom;
4596
- exports.isDomainName = isDomainName;
4597
- exports.isDoneFn = isDoneFn;
4598
- exports.isDutchNewsUrl = isDutchNewsUrl;
4599
- exports.isEbayUrl = isEbayUrl;
4600
- exports.isEmail = isEmail;
4601
- exports.isEnergyMetric = isEnergyMetric;
4602
- exports.isEnergyUom = isEnergyUom;
4603
- exports.isEqual = isEqual;
4604
- exports.isErrorCondition = isErrorCondition;
4605
- exports.isEscapeFunction = isEscapeFunction;
4606
- exports.isEtsyUrl = isEtsyUrl;
4607
- exports.isFalse = isFalse;
4608
- exports.isFalsy = isFalsy;
4609
- exports.isFnToken = isFnToken;
4610
- exports.isFnWithParams = isFnWithParams;
4611
- exports.isFrenchNewsUrl = isFrenchNewsUrl;
4612
- exports.isFrequencyMetric = isFrequencyMetric;
4613
- exports.isFrequencyUom = isFrequencyUom;
4614
- exports.isFunction = isFunction;
4615
- exports.isGeneratorToken = isGeneratorToken;
4616
- exports.isGermanNewsUrl = isGermanNewsUrl;
4617
- exports.isGithubIssueUrl = isGithubIssueUrl;
4618
- exports.isGithubIssuesListUrl = isGithubIssuesListUrl;
4619
- exports.isGithubOrgUrl = isGithubOrgUrl;
4620
- exports.isGithubProjectUrl = isGithubProjectUrl;
4621
- exports.isGithubProjectsListUrl = isGithubProjectsListUrl;
4622
- exports.isGithubReleaseTagUrl = isGithubReleaseTagUrl;
4623
- exports.isGithubReleasesListUrl = isGithubReleasesListUrl;
4624
- exports.isGithubRepoReleaseTagUrl = isGithubRepoReleaseTagUrl;
4625
- exports.isGithubRepoReleasesUrl = isGithubRepoReleasesUrl;
4626
- exports.isGithubRepoUrl = isGithubRepoUrl;
4627
- exports.isGithubUrl = isGithubUrl;
4628
- exports.isHexadecimal = isHexadecimal;
4629
- exports.isHmUrl = isHmUrl;
4630
- exports.isHomeDepotUrl = isHomeDepotUrl;
4631
- exports.isHtmlElement = isHtmlElement;
4632
- exports.isIkeaUrl = isIkeaUrl;
4633
- exports.isIndexable = isIndexable;
4634
- exports.isIndianNewsUrl = isIndianNewsUrl;
4635
- exports.isInlineSvg = isInlineSvg;
4636
- exports.isIp4Address = isIp4Address;
4637
- exports.isIp6Address = isIp6Address;
4638
- exports.isIpAddress = isIpAddress;
4639
- exports.isIso3166Alpha2 = isIso3166Alpha2;
4640
- exports.isIso3166Alpha3 = isIso3166Alpha3;
4641
- exports.isIso3166CountryCode = isIso3166CountryCode;
4642
- exports.isIso3166CountryName = isIso3166CountryName;
4643
- exports.isIsoDate = isIsoDate;
4644
- exports.isIsoDateTime = isIsoDateTime;
4645
- exports.isIsoExplicitDate = isIsoExplicitDate;
4646
- exports.isIsoExplicitTime = isIsoExplicitTime;
4647
- exports.isIsoImplicitDate = isIsoImplicitDate;
4648
- exports.isIsoImplicitTime = isIsoImplicitTime;
4649
- exports.isIsoTime = isIsoTime;
4650
- exports.isIsoYear = isIsoYear;
4651
- exports.isItalianNewsUrl = isItalianNewsUrl;
4652
- exports.isJapaneseNewsUrl = isJapaneseNewsUrl;
4653
- exports.isKrogersUrl = isKrogersUrl;
4654
- exports.isLeapYear = isLeapYear;
4655
- exports.isLength = isLength;
4656
- exports.isLikeRegExp = isLikeRegExp;
4657
- exports.isLowesUrl = isLowesUrl;
4658
- exports.isLuminosityMetric = isLuminosityMetric;
4659
- exports.isLuminosityUom = isLuminosityUom;
4660
- exports.isLuxonDateTime = isLuxonDateTime;
4661
- exports.isMacysUrl = isMacysUrl;
4662
- exports.isMapToken = isMapToken;
4663
- exports.isMassMetric = isMassMetric;
4664
- exports.isMassUom = isMassUom;
4665
- exports.isMetric = isMetric;
4666
- exports.isMexicanNewsUrl = isMexicanNewsUrl;
4667
- exports.isMoment = isMoment;
4668
- exports.isNever = isNever;
4669
- exports.isNewsUrl = isNewsUrl;
4670
- exports.isNikeUrl = isNikeUrl;
4671
- exports.isNorwegianNewsUrl = isNorwegianNewsUrl;
4672
- exports.isNotNull = isNotNull;
4673
- exports.isNothing = isNothing;
4674
- exports.isNull = isNull;
4675
- exports.isNumber = isNumber;
4676
- exports.isNumberLike = isNumberLike;
4677
- exports.isNumericArray = isNumericArray;
4678
- exports.isNumericString = isNumericString;
4679
- exports.isObject = isObject;
4680
- exports.isObjectToken = isObjectToken;
4681
- exports.isOptionalParamFunction = isOptionalParamFunction;
4682
- exports.isPhoneNumber = isPhoneNumber;
4683
- exports.isPowerMetric = isPowerMetric;
4684
- exports.isPowerUom = isPowerUom;
4685
- exports.isPressureMetric = isPressureMetric;
4686
- exports.isPressureUom = isPressureUom;
4687
- exports.isReadonlyArray = isReadonlyArray;
4688
- exports.isRecordToken = isRecordToken;
4689
- exports.isRef = isRef;
4690
- exports.isRegExp = isRegExp;
4691
- exports.isRepoSource = isRepoSource;
4692
- exports.isRepoUrl = isRepoUrl;
4693
- exports.isResistance = isResistance;
4694
- exports.isResistanceUom = isResistanceUom;
4695
- exports.isRetailUrl = isRetailUrl;
4696
- exports.isSameTypeOf = isSameTypeOf;
4697
- exports.isScalar = isScalar;
4698
- exports.isSemanticVersion = isSemanticVersion;
4699
- exports.isSet = isSet;
4700
- exports.isSetToken = isSetToken;
4701
- exports.isShape = isShape;
4702
- exports.isShapeCallback = isShapeCallback;
4703
- exports.isSimpleContainerToken = isSimpleContainerToken;
4704
- exports.isSimpleContainerTokenTuple = isSimpleContainerTokenTuple;
4705
- exports.isSimpleScalarToken = isSimpleScalarToken;
4706
- exports.isSimpleScalarTokenTuple = isSimpleScalarTokenTuple;
4707
- exports.isSimpleToken = isSimpleToken;
4708
- exports.isSimpleTokenTuple = isSimpleTokenTuple;
4709
- exports.isSingletonToken = isSingletonToken;
4710
- exports.isSocialMediaProfileUrl = isSocialMediaProfileUrl;
4711
- exports.isSocialMediaUrl = isSocialMediaUrl;
4712
- exports.isSouthKoreanNewsUrl = isSouthKoreanNewsUrl;
4713
- exports.isSpanishNewsUrl = isSpanishNewsUrl;
4714
- exports.isSpecificConstant = isSpecificConstant;
4715
- exports.isSpeedMetric = isSpeedMetric;
4716
- exports.isSpeedUom = isSpeedUom;
4717
- exports.isString = isString;
4718
- exports.isStringArray = isStringArray;
4719
- exports.isSwissNewsUrl = isSwissNewsUrl;
4720
- exports.isSymbol = isSymbol;
4721
- exports.isTailwindColor = isTailwindColor;
4722
- exports.isTailwindColorClass = isTailwindColorClass;
4723
- exports.isTailwindColorName = isTailwindColorName;
4724
- exports.isTailwindColorTarget = isTailwindColorTarget;
4725
- exports.isTailwindColorWithLuminosity = isTailwindColorWithLuminosity;
4726
- exports.isTailwindColorWithLuminosityAndOpacity = isTailwindColorWithLuminosityAndOpacity;
4727
- exports.isTailwindModifier = isTailwindModifier;
4728
- exports.isTargetUrl = isTargetUrl;
4729
- exports.isTemperatureMetric = isTemperatureMetric;
4730
- exports.isTemperatureUom = isTemperatureUom;
4731
- exports.isThenable = isThenable;
4732
- exports.isThisMonth = isThisMonth;
4733
- exports.isThisWeek = isThisWeek;
4734
- exports.isThisYear = isThisYear;
4735
- exports.isTimeMetric = isTimeMetric;
4736
- exports.isTimeUom = isTimeUom;
4737
- exports.isToday = isToday;
4738
- exports.isTomorrow = isTomorrow;
4739
- exports.isTrimable = isTrimable;
4740
- exports.isTrue = isTrue;
4741
- exports.isTruthy = isTruthy;
4742
- exports.isTuple = isTuple;
4743
- exports.isTupleToken = isTupleToken;
4744
- exports.isTurkishNewsUrl = isTurkishNewsUrl;
4745
- exports.isTypeOf = isTypeOf;
4746
- exports.isTypeToken = isTypeToken;
4747
- exports.isTypeTuple = isTypeTuple;
4748
- exports.isUkNewsUrl = isUkNewsUrl;
4749
- exports.isUndefined = isUndefined;
4750
- exports.isUnionSetToken = isUnionSetToken;
4751
- exports.isUnionToken = isUnionToken;
4752
- exports.isUnset = isUnset;
4753
- exports.isUom = isUom;
4754
- exports.isUri = isUri;
4755
- exports.isUrl = isUrl;
4756
- exports.isUrlPath = isUrlPath;
4757
- exports.isUrlSource = isUrlSource;
4758
- exports.isUsNewsUrl = isUsNewsUrl;
4759
- exports.isUsStateAbbreviation = isUsStateAbbreviation;
4760
- exports.isUsStateName = isUsStateName;
4761
- exports.isVoltageMetric = isVoltageMetric;
4762
- exports.isVoltageUom = isVoltageUom;
4763
- exports.isVolumeMetric = isVolumeMetric;
4764
- exports.isVolumeUom = isVolumeUom;
4765
- exports.isWalgreensUrl = isWalgreensUrl;
4766
- exports.isWalmartUrl = isWalmartUrl;
4767
- exports.isWayfairUrl = isWayfairUrl;
4768
- exports.isWeakMapToken = isWeakMapToken;
4769
- exports.isWholeFoodsUrl = isWholeFoodsUrl;
4770
- exports.isYesterday = isYesterday;
4771
- exports.isYouTubeCreatorUrl = isYouTubeCreatorUrl;
4772
- exports.isYouTubeFeedHistoryUrl = isYouTubeFeedHistoryUrl;
4773
- exports.isYouTubeFeedUrl = isYouTubeFeedUrl;
4774
- exports.isYouTubePlaylistUrl = isYouTubePlaylistUrl;
4775
- exports.isYouTubePlaylistsUrl = isYouTubePlaylistsUrl;
4776
- exports.isYouTubeShareUrl = isYouTubeShareUrl;
4777
- exports.isYouTubeSubscriptionsUrl = isYouTubeSubscriptionsUrl;
4778
- exports.isYouTubeTrendingUrl = isYouTubeTrendingUrl;
4779
- exports.isYouTubeUrl = isYouTubeUrl;
4780
- exports.isYouTubeVideoUrl = isYouTubeVideoUrl;
4781
- exports.isYouTubeVideosInPlaylist = isYouTubeVideosInPlaylist;
4782
- exports.isZaraUrl = isZaraUrl;
4783
- exports.isZipCode = isZipCode;
4784
- exports.isZipCode5 = isZipCode5;
4785
- exports.isZipPlus4 = isZipPlus4;
4786
- exports.joinWith = joinWith;
4787
- exports.jsonValue = jsonValue;
4788
- exports.jsonValues = jsonValues;
4789
- exports.keysOf = keysOf;
4790
- exports.kindLiteral = kindLiteral;
4791
- exports.last = last;
4792
- exports.list = list;
4793
- exports.literal = literal;
4794
- exports.logicalReturns = logicalReturns;
4795
- exports.lookupCountryAlpha2 = lookupCountryAlpha2;
4796
- exports.lookupCountryAlpha3 = lookupCountryAlpha3;
4797
- exports.lookupCountryCode = lookupCountryCode;
4798
- exports.lookupCountryName = lookupCountryName;
4799
- exports.lowercase = lowercase;
4800
- exports.mergeObjects = mergeObjects;
4801
- exports.mergeScalars = mergeScalars;
4802
- exports.mergeTuples = mergeTuples;
4803
- exports.nameLiteral = nameLiteral;
4804
- exports.narrow = narrow;
4805
- exports.never = never;
4806
- exports.omit = omit;
4807
- exports.optional = optional;
4808
- exports.optionalOrNull = optionalOrNull;
4809
- exports.or = or;
4810
- exports.orNull = orNull;
4811
- exports.pathJoin = pathJoin;
4812
- exports.pluralize = pluralize;
4813
- exports.removePhoneCountryCode = removePhoneCountryCode;
4814
- exports.removeTailwindModifiers = removeTailwindModifiers;
4815
- exports.removeUrlProtocol = removeUrlProtocol;
4816
- exports.result = result;
4817
- exports.retain = retain;
4818
- exports.retainAfter = retainAfter;
4819
- exports.retainAfterInclusive = retainAfterInclusive;
4820
- exports.retainChars = retainChars;
4821
- exports.retainUntil = retainUntil;
4822
- exports.retainUntilInclusive = retainUntilInclusive;
4823
- exports.retainWhile = retainWhile;
4824
- exports.reverse = reverse;
4825
- exports.rightWhitespace = rightWhitespace;
4826
- exports.shape = shape;
4827
- exports.sharedKeys = sharedKeys;
4828
- exports.shift = shift;
4829
- exports.simpleContainerToken = simpleContainerToken;
4830
- exports.simpleContainerTokenToTypeToken = simpleContainerTokenToTypeToken;
4831
- exports.simpleContainerType = simpleContainerType;
4832
- exports.simpleScalarToken = simpleScalarToken;
4833
- exports.simpleScalarTokenToTypeToken = simpleScalarTokenToTypeToken;
4834
- exports.simpleScalarType = simpleScalarType;
4835
- exports.simpleToken = simpleToken;
4836
- exports.simpleType = simpleType;
4837
- exports.simpleUnionTokenToTypeToken = simpleUnionTokenToTypeToken;
4838
- exports.slice = slice;
4839
- exports.split = split;
4840
- exports.startsWith = startsWith;
4841
- exports.stripAfter = stripAfter;
4842
- exports.stripBefore = stripBefore;
4843
- exports.stripChars = stripChars;
4844
- exports.stripLeading = stripLeading;
4845
- exports.stripParenthesis = stripParenthesis;
4846
- exports.stripSurround = stripSurround;
4847
- exports.stripTrailing = stripTrailing;
4848
- exports.stripUntil = stripUntil;
4849
- exports.stripWhile = stripWhile;
4850
- exports.surround = surround;
4851
- exports.takeNumericCharacters = takeNumericCharacters;
4852
- exports.takeProp = takeProp;
4853
- exports.toCamelCase = toCamelCase;
4854
- exports.toKebabCase = toKebabCase;
4855
- exports.toNumber = toNumber;
4856
- exports.toNumericArray = toNumericArray;
4857
- exports.toPascalCase = toPascalCase;
4858
- exports.toSnakeCase = toSnakeCase;
4859
- exports.toString = toString;
4860
- exports.toUppercase = toUppercase;
4861
- exports.trim = trim;
4862
- exports.trimEnd = trimEnd;
4863
- exports.trimLeft = trimLeft;
4864
- exports.trimRight = trimRight;
4865
- exports.trimStart = trimStart;
4866
- exports.truncate = truncate;
4867
- exports.tuple = tuple;
4868
- exports.twColor = twColor;
4869
- exports.unbox = unbox;
4870
- exports.uncapitalize = uncapitalize;
4871
- exports.union = union;
4872
- exports.unionize = unionize;
4873
- exports.unique = unique;
4874
- exports.uniqueKeys = uniqueKeys;
4875
- exports.uppercase = uppercase;
4876
- exports.urlMeta = urlMeta;
4877
- exports.valuesOf = valuesOf;
4878
- exports.widen = widen;
4879
- exports.withDefaults = withDefaults;
4880
- exports.withKeys = withKeys;
4881
- exports.withoutKeys = withoutKeys;
4882
- exports.withoutValue = withoutValue;
4883
- exports.wrapFn = wrapFn;
4884
- exports.youtubeEmbed = youtubeEmbed;
4885
- exports.youtubeMeta = youtubeMeta;
4886
- //# sourceMappingURL=index.cjs.map
5155
+ // Annotate the CommonJS export names for ESM import in node:
5156
+ 0 && (module.exports = {
5157
+ ShapeApiImplementation,
5158
+ addFnToProps,
5159
+ addPropsToFn,
5160
+ and,
5161
+ asApi,
5162
+ asArray,
5163
+ asChars,
5164
+ asDate,
5165
+ asEscapeFunction,
5166
+ asIsoDate,
5167
+ asOptionalParamFunction,
5168
+ asPhoneFormat,
5169
+ asRecord,
5170
+ asString,
5171
+ asStringLiteral,
5172
+ asType,
5173
+ asTypeToken,
5174
+ asVueRef,
5175
+ box,
5176
+ boxDictionaryValues,
5177
+ capitalize,
5178
+ choices,
5179
+ createConverter,
5180
+ createCssKeyframe,
5181
+ createCssSelector,
5182
+ createErrorCondition,
5183
+ createFifoQueue,
5184
+ createFnWithProps,
5185
+ createLifoQueue,
5186
+ createTypeToken,
5187
+ cssColor,
5188
+ csv,
5189
+ defineCss,
5190
+ defineObj,
5191
+ defineTuple,
5192
+ endsWith,
5193
+ ensureLeading,
5194
+ ensureSurround,
5195
+ ensureTrailing,
5196
+ entries,
5197
+ errCondition,
5198
+ filter,
5199
+ find,
5200
+ fnMeta,
5201
+ get,
5202
+ getDaysBetween,
5203
+ getEach,
5204
+ getPhoneCountryCode,
5205
+ getTailwindModifiers,
5206
+ getToday,
5207
+ getTomorrow,
5208
+ getUrlPath,
5209
+ getUrlPort,
5210
+ getUrlProtocol,
5211
+ getUrlQueryParams,
5212
+ getUrlSource,
5213
+ getWeekNumber,
5214
+ getYesterday,
5215
+ getYouTubePageType,
5216
+ handleDoneFn,
5217
+ hasDefaultValue,
5218
+ hasIndexOf,
5219
+ hasKeys,
5220
+ hasUrlPort,
5221
+ hasUrlQueryParameter,
5222
+ hasWhiteSpace,
5223
+ idLiteral,
5224
+ idTypeGuard,
5225
+ identity,
5226
+ ifArray,
5227
+ ifArrayPartial,
5228
+ ifBoolean,
5229
+ ifChar,
5230
+ ifContainer,
5231
+ ifDefined,
5232
+ ifFalse,
5233
+ ifFunction,
5234
+ ifHasKey,
5235
+ ifLength,
5236
+ ifLowercaseChar,
5237
+ ifNotNull,
5238
+ ifNull,
5239
+ ifNumber,
5240
+ ifObject,
5241
+ ifSameType,
5242
+ ifScalar,
5243
+ ifString,
5244
+ ifTrue,
5245
+ ifUndefined,
5246
+ ifUppercaseChar,
5247
+ indexOf,
5248
+ intersect,
5249
+ intersection,
5250
+ ip6GroupExpansion,
5251
+ ip6Prefix,
5252
+ isAccelerationMetric,
5253
+ isAccelerationUom,
5254
+ isAlpha,
5255
+ isAmazonUrl,
5256
+ isApi,
5257
+ isApiSurface,
5258
+ isAppleUrl,
5259
+ isAreaMetric,
5260
+ isAreaUom,
5261
+ isArray,
5262
+ isArrayToken,
5263
+ isAtomicToken,
5264
+ isAustralianNewsUrl,
5265
+ isBelgiumNewsUrl,
5266
+ isBestBuyUrl,
5267
+ isBitbucketUrl,
5268
+ isBoolean,
5269
+ isBooleanLike,
5270
+ isBox,
5271
+ isCanadianNewsUrl,
5272
+ isChineseNewsUrl,
5273
+ isCodeCommitUrl,
5274
+ isConstant,
5275
+ isContainer,
5276
+ isContainerToken,
5277
+ isCostCoUrl,
5278
+ isCountryAbbrev,
5279
+ isCountryCode2,
5280
+ isCountryCode3,
5281
+ isCountryName,
5282
+ isCssAspectRatio,
5283
+ isCurrentMetric,
5284
+ isCurrentUom,
5285
+ isCvsUrl,
5286
+ isDanishNewsUrl,
5287
+ isDate,
5288
+ isDefineObject,
5289
+ isDefined,
5290
+ isDellUrl,
5291
+ isDistanceMetric,
5292
+ isDistanceUom,
5293
+ isDomainName,
5294
+ isDoneFn,
5295
+ isDutchNewsUrl,
5296
+ isEbayUrl,
5297
+ isEmail,
5298
+ isEnergyMetric,
5299
+ isEnergyUom,
5300
+ isEqual,
5301
+ isErrorCondition,
5302
+ isEscapeFunction,
5303
+ isEtsyUrl,
5304
+ isFalse,
5305
+ isFalsy,
5306
+ isFnToken,
5307
+ isFnWithParams,
5308
+ isFrenchNewsUrl,
5309
+ isFrequencyMetric,
5310
+ isFrequencyUom,
5311
+ isFunction,
5312
+ isGeneratorToken,
5313
+ isGermanNewsUrl,
5314
+ isGithubIssueUrl,
5315
+ isGithubIssuesListUrl,
5316
+ isGithubOrgUrl,
5317
+ isGithubProjectUrl,
5318
+ isGithubProjectsListUrl,
5319
+ isGithubReleaseTagUrl,
5320
+ isGithubReleasesListUrl,
5321
+ isGithubRepoReleaseTagUrl,
5322
+ isGithubRepoReleasesUrl,
5323
+ isGithubRepoUrl,
5324
+ isGithubUrl,
5325
+ isHexadecimal,
5326
+ isHmUrl,
5327
+ isHomeDepotUrl,
5328
+ isHtmlElement,
5329
+ isIkeaUrl,
5330
+ isIndexable,
5331
+ isIndianNewsUrl,
5332
+ isInlineSvg,
5333
+ isIp4Address,
5334
+ isIp6Address,
5335
+ isIpAddress,
5336
+ isIso3166Alpha2,
5337
+ isIso3166Alpha3,
5338
+ isIso3166CountryCode,
5339
+ isIso3166CountryName,
5340
+ isIsoDate,
5341
+ isIsoDateTime,
5342
+ isIsoExplicitDate,
5343
+ isIsoExplicitTime,
5344
+ isIsoImplicitDate,
5345
+ isIsoImplicitTime,
5346
+ isIsoTime,
5347
+ isIsoYear,
5348
+ isItalianNewsUrl,
5349
+ isJapaneseNewsUrl,
5350
+ isKrogersUrl,
5351
+ isLeapYear,
5352
+ isLength,
5353
+ isLikeRegExp,
5354
+ isLowesUrl,
5355
+ isLuminosityMetric,
5356
+ isLuminosityUom,
5357
+ isLuxonDateTime,
5358
+ isMacysUrl,
5359
+ isMapToken,
5360
+ isMassMetric,
5361
+ isMassUom,
5362
+ isMetric,
5363
+ isMexicanNewsUrl,
5364
+ isMoment,
5365
+ isNever,
5366
+ isNewsUrl,
5367
+ isNikeUrl,
5368
+ isNorwegianNewsUrl,
5369
+ isNotNull,
5370
+ isNothing,
5371
+ isNull,
5372
+ isNumber,
5373
+ isNumberLike,
5374
+ isNumericArray,
5375
+ isNumericString,
5376
+ isObject,
5377
+ isObjectToken,
5378
+ isOptionalParamFunction,
5379
+ isPhoneNumber,
5380
+ isPowerMetric,
5381
+ isPowerUom,
5382
+ isPressureMetric,
5383
+ isPressureUom,
5384
+ isReadonlyArray,
5385
+ isRecordToken,
5386
+ isRef,
5387
+ isRegExp,
5388
+ isRepoSource,
5389
+ isRepoUrl,
5390
+ isResistance,
5391
+ isResistanceUom,
5392
+ isRetailUrl,
5393
+ isSameTypeOf,
5394
+ isScalar,
5395
+ isSemanticVersion,
5396
+ isSet,
5397
+ isSetToken,
5398
+ isShape,
5399
+ isShapeCallback,
5400
+ isSimpleContainerToken,
5401
+ isSimpleContainerTokenTuple,
5402
+ isSimpleScalarToken,
5403
+ isSimpleScalarTokenTuple,
5404
+ isSimpleToken,
5405
+ isSimpleTokenTuple,
5406
+ isSingletonToken,
5407
+ isSocialMediaProfileUrl,
5408
+ isSocialMediaUrl,
5409
+ isSouthKoreanNewsUrl,
5410
+ isSpanishNewsUrl,
5411
+ isSpecificConstant,
5412
+ isSpeedMetric,
5413
+ isSpeedUom,
5414
+ isString,
5415
+ isStringArray,
5416
+ isSwissNewsUrl,
5417
+ isSymbol,
5418
+ isTailwindColor,
5419
+ isTailwindColorClass,
5420
+ isTailwindColorName,
5421
+ isTailwindColorTarget,
5422
+ isTailwindColorWithLuminosity,
5423
+ isTailwindColorWithLuminosityAndOpacity,
5424
+ isTailwindModifier,
5425
+ isTargetUrl,
5426
+ isTemperatureMetric,
5427
+ isTemperatureUom,
5428
+ isThenable,
5429
+ isThisMonth,
5430
+ isThisWeek,
5431
+ isThisYear,
5432
+ isTimeMetric,
5433
+ isTimeUom,
5434
+ isToday,
5435
+ isTomorrow,
5436
+ isTrimable,
5437
+ isTrue,
5438
+ isTruthy,
5439
+ isTuple,
5440
+ isTupleToken,
5441
+ isTurkishNewsUrl,
5442
+ isTypeOf,
5443
+ isTypeToken,
5444
+ isTypeTuple,
5445
+ isUkNewsUrl,
5446
+ isUndefined,
5447
+ isUnionSetToken,
5448
+ isUnionToken,
5449
+ isUnset,
5450
+ isUom,
5451
+ isUri,
5452
+ isUrl,
5453
+ isUrlPath,
5454
+ isUrlSource,
5455
+ isUsNewsUrl,
5456
+ isUsStateAbbreviation,
5457
+ isUsStateName,
5458
+ isVoltageMetric,
5459
+ isVoltageUom,
5460
+ isVolumeMetric,
5461
+ isVolumeUom,
5462
+ isWalgreensUrl,
5463
+ isWalmartUrl,
5464
+ isWayfairUrl,
5465
+ isWeakMapToken,
5466
+ isWholeFoodsUrl,
5467
+ isYesterday,
5468
+ isYouTubeCreatorUrl,
5469
+ isYouTubeFeedHistoryUrl,
5470
+ isYouTubeFeedUrl,
5471
+ isYouTubePlaylistUrl,
5472
+ isYouTubePlaylistsUrl,
5473
+ isYouTubeShareUrl,
5474
+ isYouTubeSubscriptionsUrl,
5475
+ isYouTubeTrendingUrl,
5476
+ isYouTubeUrl,
5477
+ isYouTubeVideoUrl,
5478
+ isYouTubeVideosInPlaylist,
5479
+ isZaraUrl,
5480
+ isZipCode,
5481
+ isZipCode5,
5482
+ isZipPlus4,
5483
+ joinWith,
5484
+ jsonValue,
5485
+ jsonValues,
5486
+ keysOf,
5487
+ kindLiteral,
5488
+ last,
5489
+ list,
5490
+ literal,
5491
+ logicalReturns,
5492
+ lookupCountryAlpha2,
5493
+ lookupCountryAlpha3,
5494
+ lookupCountryCode,
5495
+ lookupCountryName,
5496
+ lowercase,
5497
+ mergeObjects,
5498
+ mergeScalars,
5499
+ mergeTuples,
5500
+ nameLiteral,
5501
+ narrow,
5502
+ never,
5503
+ omit,
5504
+ optional,
5505
+ optionalOrNull,
5506
+ or,
5507
+ orNull,
5508
+ pathJoin,
5509
+ pluralize,
5510
+ removePhoneCountryCode,
5511
+ removeTailwindModifiers,
5512
+ removeUrlProtocol,
5513
+ result,
5514
+ retain,
5515
+ retainAfter,
5516
+ retainAfterInclusive,
5517
+ retainChars,
5518
+ retainUntil,
5519
+ retainUntilInclusive,
5520
+ retainWhile,
5521
+ reverse,
5522
+ rightWhitespace,
5523
+ shape,
5524
+ sharedKeys,
5525
+ shift,
5526
+ simpleContainerToken,
5527
+ simpleContainerTokenToTypeToken,
5528
+ simpleContainerType,
5529
+ simpleScalarToken,
5530
+ simpleScalarTokenToTypeToken,
5531
+ simpleScalarType,
5532
+ simpleToken,
5533
+ simpleType,
5534
+ simpleUnionTokenToTypeToken,
5535
+ slice,
5536
+ split,
5537
+ startsWith,
5538
+ stripAfter,
5539
+ stripBefore,
5540
+ stripChars,
5541
+ stripLeading,
5542
+ stripParenthesis,
5543
+ stripSurround,
5544
+ stripTrailing,
5545
+ stripUntil,
5546
+ stripWhile,
5547
+ surround,
5548
+ takeNumericCharacters,
5549
+ takeProp,
5550
+ toCamelCase,
5551
+ toKebabCase,
5552
+ toNumber,
5553
+ toNumericArray,
5554
+ toPascalCase,
5555
+ toSnakeCase,
5556
+ toString,
5557
+ toUppercase,
5558
+ trim,
5559
+ trimEnd,
5560
+ trimLeft,
5561
+ trimRight,
5562
+ trimStart,
5563
+ truncate,
5564
+ tuple,
5565
+ twColor,
5566
+ unbox,
5567
+ uncapitalize,
5568
+ union,
5569
+ unionize,
5570
+ unique,
5571
+ uniqueKeys,
5572
+ uppercase,
5573
+ urlMeta,
5574
+ valuesOf,
5575
+ widen,
5576
+ withDefaults,
5577
+ withKeys,
5578
+ withoutKeys,
5579
+ withoutValue,
5580
+ wrapFn,
5581
+ youtubeEmbed,
5582
+ youtubeMeta
5583
+ });
4887
5584
  //# sourceMappingURL=index.cjs.map