@aiao/utils 0.0.1
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/@browser/IdleTimer.d.ts +18 -0
- package/@browser/broadcast-channel-pool.d.ts +17 -0
- package/@browser/index.d.ts +4 -0
- package/@browser/leader-election.d.ts +7 -0
- package/@browser/perform-chunk.d.ts +9 -0
- package/README.md +1 -0
- package/array/chunk.d.ts +24 -0
- package/array/difference.d.ts +30 -0
- package/array/flatten.d.ts +24 -0
- package/array/flattenDeep.d.ts +25 -0
- package/array/index.d.ts +8 -0
- package/array/intersection.d.ts +29 -0
- package/array/needArray.d.ts +37 -0
- package/array/sortBy.d.ts +36 -0
- package/async/index.d.ts +2 -0
- package/async/next-tick.d.ts +28 -0
- package/async/sleep.d.ts +5 -0
- package/binary/index.d.ts +1 -0
- package/binary/uint8ArrayToString.d.ts +12 -0
- package/collection/index.d.ts +1 -0
- package/collection/traverseObjectKeys.d.ts +3 -0
- package/crypto/aesDecrypt.d.ts +8 -0
- package/crypto/aesEncrypt.d.ts +10 -0
- package/crypto/base64Decode.d.ts +6 -0
- package/crypto/base64Encode.d.ts +6 -0
- package/crypto/decodeJWTPayload.d.ts +6 -0
- package/crypto/index.d.ts +8 -0
- package/crypto/rsaDecrypt.d.ts +7 -0
- package/crypto/rsaEncrypt.d.ts +8 -0
- package/crypto/rsaGenerateKey.d.ts +5 -0
- package/date/canBeDate.d.ts +5 -0
- package/date/dateStringToDate.d.ts +7 -0
- package/date/dateStringWithTimezone.d.ts +11 -0
- package/date/formatCountdown.d.ts +12 -0
- package/date/formatPassTime.d.ts +10 -0
- package/date/index.d.ts +12 -0
- package/date/isISODateString.d.ts +6 -0
- package/date/isMSTime.d.ts +7 -0
- package/date/msTimeToMilliseconds.d.ts +12 -0
- package/date/parseTime.d.ts +9 -0
- package/date/stringTime.d.ts +3 -0
- package/date/unixTimestamp.d.ts +5 -0
- package/function/debounce.d.ts +2 -0
- package/function/emptyFunction.d.ts +4 -0
- package/function/index.d.ts +4 -0
- package/function/once.d.ts +27 -0
- package/function/throttle.d.ts +30 -0
- package/index.d.ts +18 -0
- package/index.js +955 -0
- package/indexing/fractional-indexing.d.ts +26 -0
- package/number/canBeNumber.d.ts +27 -0
- package/number/index.d.ts +6 -0
- package/number/numberStep.d.ts +19 -0
- package/number/numberStepScreenSize.d.ts +1 -0
- package/number/numberStrip.d.ts +21 -0
- package/number/toInt.d.ts +1 -0
- package/number/tryToNumber.d.ts +1 -0
- package/object/deepFreeze.d.ts +5 -0
- package/object/flattenPathObjectToPlainObject.d.ts +7 -0
- package/object/get.d.ts +23 -0
- package/object/getTag.d.ts +1 -0
- package/object/has.d.ts +20 -0
- package/object/index.d.ts +15 -0
- package/object/isEqual.d.ts +25 -0
- package/object/isEqualUint8Array.d.ts +1 -0
- package/object/omit.d.ts +24 -0
- package/object/omitBy.d.ts +7 -0
- package/object/pick.d.ts +24 -0
- package/object/pickBy.d.ts +1 -0
- package/object/plainObjectToFlattenPathObject.d.ts +8 -0
- package/object/set.d.ts +27 -0
- package/object/setWith.d.ts +12 -0
- package/object/toPlainObject.d.ts +1 -0
- package/object/zipObject.d.ts +9 -0
- package/package.json +20 -0
- package/platform/index.d.ts +1 -0
- package/platform/is-browser.d.ts +4 -0
- package/random/index.d.ts +6 -0
- package/random/randomArrayItem.d.ts +1 -0
- package/random/randomFloat.d.ts +1 -0
- package/random/randomInt.d.ts +7 -0
- package/random/randomString.d.ts +9 -0
- package/random/randomUintByLength.d.ts +1 -0
- package/random/randomUintString.d.ts +1 -0
- package/string/camelCase.d.ts +22 -0
- package/string/capitalize.d.ts +7 -0
- package/string/compressToBase64Url.d.ts +4 -0
- package/string/decompressFromBase64Url.d.ts +4 -0
- package/string/getWords.d.ts +1 -0
- package/string/index.d.ts +17 -0
- package/string/kebabCase.d.ts +9 -0
- package/string/parseChineseNumber.d.ts +1 -0
- package/string/queryParse.d.ts +1 -0
- package/string/queryStringify.d.ts +5 -0
- package/string/rmb.d.ts +6 -0
- package/string/similarity.d.ts +1 -0
- package/string/snakeCase.d.ts +10 -0
- package/string/startCase.d.ts +7 -0
- package/string/stringSingleline.d.ts +4 -0
- package/string/stringTemplate.d.ts +7 -0
- package/string/stringToArrayBuffer.d.ts +7 -0
- package/string/uncapitalize.d.ts +7 -0
- package/string/urlJoin.d.ts +1 -0
- package/tools/event.d.ts +18 -0
- package/tools/image.d.ts +2 -0
- package/tools/index.d.ts +3 -0
- package/tools/log.d.ts +4 -0
- package/type-definition/index.d.ts +1 -0
- package/type-definition/result-types.d.ts +11 -0
- package/types/AnyFunction.d.ts +20 -0
- package/types/DeepPartial.d.ts +48 -0
- package/types/index.d.ts +24 -0
- package/types/isArray.d.ts +19 -0
- package/types/isArrayBuffer.d.ts +23 -0
- package/types/isBoolean.d.ts +27 -0
- package/types/isDate.d.ts +25 -0
- package/types/isEmpty.d.ts +40 -0
- package/types/isFloat.d.ts +1 -0
- package/types/isFunction.d.ts +2 -0
- package/types/isInt.d.ts +1 -0
- package/types/isIntArray.d.ts +1 -0
- package/types/isNil.d.ts +20 -0
- package/types/isNumber.d.ts +29 -0
- package/types/isNumberArray.d.ts +1 -0
- package/types/isObject.d.ts +22 -0
- package/types/isObjectLike.d.ts +1 -0
- package/types/isPlainObject.d.ts +27 -0
- package/types/isPrimitive.d.ts +33 -0
- package/types/isPromise.d.ts +1 -0
- package/types/isRegExp.d.ts +23 -0
- package/types/isString.d.ts +22 -0
- package/types/isStringArray.d.ts +1 -0
- package/types/isSymbol.d.ts +1 -0
- package/types/isUint8Array.d.ts +25 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * from './@browser';
|
|
2
|
+
export * from './array';
|
|
3
|
+
export * from './async';
|
|
4
|
+
export * from './binary';
|
|
5
|
+
export * from './collection';
|
|
6
|
+
export * from './crypto';
|
|
7
|
+
export * from './date';
|
|
8
|
+
export * from './function';
|
|
9
|
+
export * from './indexing/fractional-indexing';
|
|
10
|
+
export * from './number';
|
|
11
|
+
export * from './object';
|
|
12
|
+
export * from './platform';
|
|
13
|
+
export * from './random';
|
|
14
|
+
export * from './string';
|
|
15
|
+
export * from './tools';
|
|
16
|
+
export * from './tools/log';
|
|
17
|
+
export * from './type-definition';
|
|
18
|
+
export * from './types';
|