utilitas 1995.2.50 → 1995.2.52
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/README.md +3 -0
- package/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/alan.mjs +9 -5
- package/lib/bot.mjs +214 -10
- package/lib/callosum.mjs +2 -2
- package/lib/dbio.mjs +3 -2
- package/lib/manifest.mjs +1 -1
- package/lib/memory.mjs +15 -16
- package/lib/utilitas.mjs +26 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -188,6 +188,7 @@ Works in Node.js and modern browsers.
|
|
|
188
188
|
| assembleSet | Function | data, options |
|
|
189
189
|
| assembleTail | Function | options |
|
|
190
190
|
| assembleUpdate | Function | table, data, options |
|
|
191
|
+
| cleanSql | Function | sql |
|
|
191
192
|
| countAll | AsyncFunction | table |
|
|
192
193
|
| countByKeyValue | AsyncFunction | table, key, value |
|
|
193
194
|
| deleteAll | AsyncFunction | table, options |
|
|
@@ -512,6 +513,7 @@ Works in Node.js and modern browsers.
|
|
|
512
513
|
| getRandomInt | Function | |
|
|
513
514
|
| getRandomItemInArray | Function | array, options |
|
|
514
515
|
| getShortestInArray | Function | arr |
|
|
516
|
+
| getTimeIcon | Function | objTime |
|
|
515
517
|
| getType | Function | any |
|
|
516
518
|
| getUnixTimestampByDate | Function | date |
|
|
517
519
|
| hexDecode | Function | string, toBuf |
|
|
@@ -527,6 +529,7 @@ Works in Node.js and modern browsers.
|
|
|
527
529
|
| isNull | Function | object, object |
|
|
528
530
|
| isSet | Function | o, strict |
|
|
529
531
|
| isUndefined | Function | any, any |
|
|
532
|
+
| lastItem | Function | array |
|
|
530
533
|
| lineSplit | Function | string, options |
|
|
531
534
|
| locate | AsyncFunction | rootPack |
|
|
532
535
|
| log | Function | content, filename, options |
|