@bbn/bbn 1.0.59 → 1.0.61
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/dist/_.js +1 -1
- package/dist/bundle.d.ts +3804 -242
- package/dist/bundle.js +4062 -501
- package/dist/db.js +3 -3
- package/dist/fn/ajax/_addLoader.d.ts +16 -0
- package/dist/fn/ajax/_addLoader.js +51 -0
- package/dist/fn/ajax/_deleteLoader.d.ts +16 -0
- package/dist/fn/ajax/_deleteLoader.js +39 -0
- package/dist/fn/ajax/abort.d.ts +24 -0
- package/dist/fn/ajax/abort.js +36 -0
- package/dist/fn/ajax/abortURL.d.ts +22 -0
- package/dist/fn/ajax/abortURL.js +33 -0
- package/dist/fn/ajax/ajax.d.ts +58 -0
- package/dist/fn/ajax/ajax.js +170 -0
- package/dist/fn/ajax/callback.d.ts +37 -0
- package/dist/fn/ajax/callback.js +117 -0
- package/dist/fn/ajax/download.d.ts +30 -0
- package/dist/fn/ajax/download.js +64 -0
- package/dist/fn/ajax/downloadContent.d.ts +28 -0
- package/dist/fn/ajax/downloadContent.js +74 -0
- package/dist/fn/ajax/getLoader.d.ts +37 -0
- package/dist/fn/ajax/getLoader.js +44 -0
- package/dist/fn/ajax/getRequestId.d.ts +50 -0
- package/dist/fn/ajax/getRequestId.js +62 -0
- package/dist/fn/ajax/link.d.ts +26 -0
- package/dist/fn/ajax/link.js +129 -0
- package/dist/fn/ajax/post.d.ts +35 -0
- package/dist/fn/ajax/post.js +45 -0
- package/dist/fn/ajax/postOut.d.ts +21 -0
- package/dist/fn/ajax/postOut.js +49 -0
- package/dist/fn/ajax/setNavigationVars.d.ts +25 -0
- package/dist/fn/ajax/setNavigationVars.js +80 -0
- package/dist/fn/ajax/treatAjaxArguments.d.ts +53 -0
- package/dist/fn/ajax/treatAjaxArguments.js +127 -0
- package/dist/fn/ajax/upload.d.ts +18 -0
- package/dist/fn/ajax/upload.js +52 -0
- package/dist/fn/browser/copy.d.ts +15 -0
- package/dist/fn/browser/copy.js +50 -0
- package/dist/fn/browser/eraseCookie.d.ts +15 -0
- package/dist/fn/browser/eraseCookie.js +17 -0
- package/dist/fn/browser/error.d.ts +14 -0
- package/dist/fn/browser/error.js +29 -0
- package/dist/fn/browser/getBrowserName.d.ts +9 -0
- package/dist/fn/browser/getBrowserName.js +28 -0
- package/dist/fn/browser/getBrowserVersion.d.ts +9 -0
- package/dist/fn/browser/getBrowserVersion.js +29 -0
- package/dist/fn/browser/getCookie.d.ts +16 -0
- package/dist/fn/browser/getCookie.js +32 -0
- package/dist/fn/browser/getDeviceType.d.ts +14 -0
- package/dist/fn/browser/getDeviceType.js +23 -0
- package/dist/fn/browser/getEventData.d.ts +16 -0
- package/dist/fn/browser/getEventData.js +116 -0
- package/dist/fn/browser/happy.d.ts +14 -0
- package/dist/fn/browser/happy.js +22 -0
- package/dist/fn/browser/history.d.ts +2 -0
- package/dist/fn/browser/history.js +4 -0
- package/dist/fn/browser/info.d.ts +10 -0
- package/dist/fn/browser/info.js +19 -0
- package/dist/fn/browser/isActiveInterface.d.ts +14 -0
- package/dist/fn/browser/isActiveInterface.js +20 -0
- package/dist/fn/browser/isDesktopDevice.d.ts +14 -0
- package/dist/fn/browser/isDesktopDevice.js +17 -0
- package/dist/fn/browser/isFocused.d.ts +21 -0
- package/dist/fn/browser/isFocused.js +23 -0
- package/dist/fn/browser/isMobile.d.ts +14 -0
- package/dist/fn/browser/isMobile.js +18 -0
- package/dist/fn/browser/isMobileDevice.d.ts +2 -0
- package/dist/fn/browser/isMobileDevice.js +5 -0
- package/dist/fn/browser/isTabletDevice.d.ts +14 -0
- package/dist/fn/browser/isTabletDevice.js +17 -0
- package/dist/fn/browser/log.d.ts +15 -0
- package/dist/fn/browser/log.js +46 -0
- package/dist/fn/browser/replaceSelection.d.ts +2 -0
- package/dist/fn/browser/replaceSelection.js +42 -0
- package/dist/fn/browser/selectElementText.d.ts +21 -0
- package/dist/fn/browser/selectElementText.js +42 -0
- package/dist/fn/browser/setCookie.d.ts +16 -0
- package/dist/fn/browser/setCookie.js +25 -0
- package/dist/fn/browser/toggleFullScreen.d.ts +2 -0
- package/dist/fn/browser/toggleFullScreen.js +39 -0
- package/dist/fn/browser/warning.d.ts +14 -0
- package/dist/fn/browser/warning.js +24 -0
- package/dist/fn/convert/arrayBuffer2String.d.ts +2 -0
- package/dist/fn/convert/arrayBuffer2String.js +4 -0
- package/dist/fn/convert/canvasToImage.d.ts +16 -0
- package/dist/fn/convert/canvasToImage.js +20 -0
- package/dist/fn/convert/colorToHex.d.ts +20 -0
- package/dist/fn/convert/colorToHex.js +24 -0
- package/dist/fn/convert/fromXml.d.ts +12 -0
- package/dist/fn/convert/fromXml.js +54 -0
- package/dist/fn/convert/hex2rgb.d.ts +24 -0
- package/dist/fn/convert/hex2rgb.js +29 -0
- package/dist/fn/convert/imageToCanvas.d.ts +15 -0
- package/dist/fn/convert/imageToCanvas.js +21 -0
- package/dist/fn/convert/imgToBase64.d.ts +2 -0
- package/dist/fn/convert/imgToBase64.js +7 -0
- package/dist/fn/convert/rgb2hex.d.ts +20 -0
- package/dist/fn/convert/rgb2hex.js +28 -0
- package/dist/fn/convert/string2ArrayBuffer.d.ts +2 -0
- package/dist/fn/convert/string2ArrayBuffer.js +9 -0
- package/dist/fn/convert/toCSV.d.ts +26 -0
- package/dist/fn/convert/toCSV.js +64 -0
- package/dist/fn/datetime/calendar.d.ts +2 -0
- package/dist/fn/datetime/calendar.js +23 -0
- package/dist/fn/datetime/chrono.d.ts +25 -0
- package/dist/fn/datetime/chrono.js +45 -0
- package/dist/fn/datetime/date.d.ts +18 -0
- package/dist/fn/datetime/date.js +44 -0
- package/dist/fn/datetime/dateSQL.d.ts +20 -0
- package/dist/fn/datetime/dateSQL.js +26 -0
- package/dist/fn/datetime/daysInMonth.d.ts +17 -0
- package/dist/fn/datetime/daysInMonth.js +24 -0
- package/dist/fn/datetime/fdate.d.ts +11 -0
- package/dist/fn/datetime/fdate.js +28 -0
- package/dist/fn/datetime/fdatetime.d.ts +9 -0
- package/dist/fn/datetime/fdatetime.js +30 -0
- package/dist/fn/datetime/formatDate.d.ts +2 -0
- package/dist/fn/datetime/formatDate.js +4 -0
- package/dist/fn/datetime/ftime.d.ts +9 -0
- package/dist/fn/datetime/ftime.js +21 -0
- package/dist/fn/datetime/getDay.d.ts +11 -0
- package/dist/fn/datetime/getDay.js +26 -0
- package/dist/fn/datetime/timestamp.d.ts +15 -0
- package/dist/fn/datetime/timestamp.js +18 -0
- package/dist/fn/default/defaultAjaxAbortFunction.d.ts +2 -0
- package/dist/fn/default/defaultAjaxAbortFunction.js +5 -0
- package/dist/fn/default/defaultAjaxErrorFunction.d.ts +2 -0
- package/dist/fn/default/defaultAjaxErrorFunction.js +4 -0
- package/dist/fn/default/defaultAlertFunction.d.ts +2 -0
- package/dist/fn/default/defaultAlertFunction.js +5 -0
- package/dist/fn/default/defaultConfirmFunction.d.ts +2 -0
- package/dist/fn/default/defaultConfirmFunction.js +14 -0
- package/dist/fn/default/defaultEndLoadingFunction.d.ts +2 -0
- package/dist/fn/default/defaultEndLoadingFunction.js +4 -0
- package/dist/fn/default/defaultErrorFunction.d.ts +2 -0
- package/dist/fn/default/defaultErrorFunction.js +5 -0
- package/dist/fn/default/defaultHistoryFunction.d.ts +2 -0
- package/dist/fn/default/defaultHistoryFunction.js +4 -0
- package/dist/fn/default/defaultLinkFunction.d.ts +2 -0
- package/dist/fn/default/defaultLinkFunction.js +4 -0
- package/dist/fn/default/defaultPostLinkFunction.d.ts +2 -0
- package/dist/fn/default/defaultPostLinkFunction.js +4 -0
- package/dist/fn/default/defaultPreLinkFunction.d.ts +2 -0
- package/dist/fn/default/defaultPreLinkFunction.js +4 -0
- package/dist/fn/default/defaultResizeFunction.d.ts +2 -0
- package/dist/fn/default/defaultResizeFunction.js +4 -0
- package/dist/fn/default/defaultStartLoadingFunction.d.ts +2 -0
- package/dist/fn/default/defaultStartLoadingFunction.js +4 -0
- package/dist/fn/form/addInputs.d.ts +43 -0
- package/dist/fn/form/addInputs.js +81 -0
- package/dist/fn/form/fieldValue.d.ts +12 -0
- package/dist/fn/form/fieldValue.js +34 -0
- package/dist/fn/form/formdata.d.ts +45 -0
- package/dist/fn/form/formdata.js +95 -0
- package/dist/fn/form/objectToFormData.d.ts +12 -0
- package/dist/fn/form/objectToFormData.js +45 -0
- package/dist/fn/form/submit.d.ts +20 -0
- package/dist/fn/form/submit.js +51 -0
- package/dist/fn/html/adjustHeight.d.ts +2 -0
- package/dist/fn/html/adjustHeight.js +10 -0
- package/dist/fn/html/adjustSize.d.ts +2 -0
- package/dist/fn/html/adjustSize.js +21 -0
- package/dist/fn/html/adjustWidth.d.ts +2 -0
- package/dist/fn/html/adjustWidth.js +10 -0
- package/dist/fn/html/getAllTags.d.ts +6 -0
- package/dist/fn/html/getAllTags.js +9 -0
- package/dist/fn/html/getAncestors.d.ts +2 -0
- package/dist/fn/html/getAncestors.js +25 -0
- package/dist/fn/html/getAttributes.d.ts +6 -0
- package/dist/fn/html/getAttributes.js +16 -0
- package/dist/fn/html/getHTMLOfSelection.d.ts +2 -0
- package/dist/fn/html/getHTMLOfSelection.js +18 -0
- package/dist/fn/html/getHtml.d.ts +2 -0
- package/dist/fn/html/getHtml.js +9 -0
- package/dist/fn/html/getPath.d.ts +10 -0
- package/dist/fn/html/getPath.js +50 -0
- package/dist/fn/html/getText.d.ts +2 -0
- package/dist/fn/html/getText.js +4 -0
- package/dist/fn/html/html2text.d.ts +17 -0
- package/dist/fn/html/html2text.js +22 -0
- package/dist/fn/html/isInside.d.ts +2 -0
- package/dist/fn/html/isInside.js +23 -0
- package/dist/fn/html/makeReactive.d.ts +2 -0
- package/dist/fn/html/makeReactive.js +185 -0
- package/dist/fn/html/selector.d.ts +10 -0
- package/dist/fn/html/selector.js +12 -0
- package/dist/fn/init.d.ts +13 -0
- package/dist/fn/init.js +25 -12
- package/dist/fn/loop/each.d.ts +33 -0
- package/dist/fn/loop/each.js +54 -0
- package/dist/fn/loop/fori.d.ts +36 -0
- package/dist/fn/loop/fori.js +53 -0
- package/dist/fn/loop/forir.d.ts +36 -0
- package/dist/fn/loop/forir.js +53 -0
- package/dist/fn/loop/iterate.d.ts +22 -0
- package/dist/fn/loop/iterate.js +36 -0
- package/dist/fn/loop/riterate.d.ts +21 -0
- package/dist/fn/loop/riterate.js +24 -0
- package/dist/fn/misc/analyzeFunction.d.ts +11 -0
- package/dist/fn/misc/analyzeFunction.js +141 -0
- package/dist/fn/misc/getTimeoff.d.ts +14 -0
- package/dist/fn/misc/getTimeoff.js +19 -0
- package/dist/fn/misc/money.d.ts +23 -0
- package/dist/fn/misc/money.js +122 -0
- package/dist/fn/misc/percent.d.ts +23 -0
- package/dist/fn/misc/percent.js +25 -0
- package/dist/fn/misc/randomInt.d.ts +22 -0
- package/dist/fn/misc/randomInt.js +24 -0
- package/dist/fn/misc/roundDecimal.d.ts +11 -0
- package/dist/fn/misc/roundDecimal.js +13 -0
- package/dist/fn/misc/translate.d.ts +2 -0
- package/dist/fn/misc/translate.js +8 -0
- package/dist/fn/object/_compareValues.d.ts +40 -0
- package/dist/fn/object/_compareValues.js +78 -0
- package/dist/fn/object/arrayFromProp.d.ts +33 -0
- package/dist/fn/object/arrayFromProp.js +41 -0
- package/dist/fn/object/autoExtend.d.ts +33 -0
- package/dist/fn/object/autoExtend.js +44 -0
- package/dist/fn/object/checkProps.d.ts +2 -0
- package/dist/fn/object/checkProps.js +5 -0
- package/dist/fn/object/checkPropsDetails.d.ts +2 -0
- package/dist/fn/object/checkPropsDetails.js +53 -0
- package/dist/fn/object/checkPropsOrDie.d.ts +2 -0
- package/dist/fn/object/checkPropsOrDie.js +9 -0
- package/dist/fn/object/circularReplacer.d.ts +7 -0
- package/dist/fn/object/circularReplacer.js +39 -0
- package/dist/fn/object/clone.d.ts +19 -0
- package/dist/fn/object/clone.js +33 -0
- package/dist/fn/object/compare.d.ts +53 -0
- package/dist/fn/object/compare.js +150 -0
- package/dist/fn/object/compareConditions.d.ts +46 -0
- package/dist/fn/object/compareConditions.js +86 -0
- package/dist/fn/object/count.d.ts +56 -0
- package/dist/fn/object/count.js +59 -0
- package/dist/fn/object/createObject.d.ts +2 -0
- package/dist/fn/object/createObject.js +9 -0
- package/dist/fn/object/deepPath.d.ts +57 -0
- package/dist/fn/object/deepPath.js +78 -0
- package/dist/fn/object/deleteProp.d.ts +8 -0
- package/dist/fn/object/deleteProp.js +13 -0
- package/dist/fn/object/diffObj.d.ts +79 -0
- package/dist/fn/object/diffObj.js +168 -0
- package/dist/fn/object/extend.d.ts +87 -0
- package/dist/fn/object/extend.js +158 -0
- package/dist/fn/object/extendOut.d.ts +18 -0
- package/dist/fn/object/extendOut.js +40 -0
- package/dist/fn/object/filter.d.ts +50 -0
- package/dist/fn/object/filter.js +94 -0
- package/dist/fn/object/filterToConditions.d.ts +48 -0
- package/dist/fn/object/filterToConditions.js +68 -0
- package/dist/fn/object/findAll.d.ts +57 -0
- package/dist/fn/object/findAll.js +73 -0
- package/dist/fn/object/getField.d.ts +30 -0
- package/dist/fn/object/getField.js +37 -0
- package/dist/fn/object/getFieldValues.d.ts +30 -0
- package/dist/fn/object/getFieldValues.js +41 -0
- package/dist/fn/object/getProp.d.ts +8 -0
- package/dist/fn/object/getProp.js +13 -0
- package/dist/fn/object/getProperty.d.ts +30 -0
- package/dist/fn/object/getProperty.js +39 -0
- package/dist/fn/object/getRow.d.ts +42 -0
- package/dist/fn/object/getRow.js +49 -0
- package/dist/fn/object/map.d.ts +74 -0
- package/dist/fn/object/map.js +83 -0
- package/dist/fn/object/move.d.ts +34 -0
- package/dist/fn/object/move.js +43 -0
- package/dist/fn/object/multiorder.d.ts +40 -0
- package/dist/fn/object/multiorder.js +60 -0
- package/dist/fn/object/numProperties.d.ts +31 -0
- package/dist/fn/object/numProperties.js +36 -0
- package/dist/fn/object/order.d.ts +28 -0
- package/dist/fn/object/order.js +36 -0
- package/dist/fn/object/pickValue.d.ts +2 -0
- package/dist/fn/object/pickValue.js +6 -0
- package/dist/fn/object/removeEmpty.d.ts +18 -0
- package/dist/fn/object/removeEmpty.js +47 -0
- package/dist/fn/object/removePrivateProp.d.ts +24 -0
- package/dist/fn/object/removePrivateProp.js +41 -0
- package/dist/fn/object/search.d.ts +101 -0
- package/dist/fn/object/search.js +177 -0
- package/dist/fn/object/setProp.d.ts +11 -0
- package/dist/fn/object/setProp.js +17 -0
- package/dist/fn/object/setProperty.d.ts +30 -0
- package/dist/fn/object/setProperty.js +50 -0
- package/dist/fn/object/shortenObj.d.ts +25 -0
- package/dist/fn/object/shortenObj.js +40 -0
- package/dist/fn/object/shuffle.d.ts +2 -0
- package/dist/fn/object/shuffle.js +13 -0
- package/dist/fn/object/stat.d.ts +2 -0
- package/dist/fn/object/stat.js +49 -0
- package/dist/fn/object/sum.d.ts +46 -0
- package/dist/fn/object/sum.js +57 -0
- package/dist/fn/object/unique.d.ts +18 -0
- package/dist/fn/object/unique.js +22 -0
- package/dist/fn/string/baseName.d.ts +24 -0
- package/dist/fn/string/baseName.js +39 -0
- package/dist/fn/string/br2nl.d.ts +19 -0
- package/dist/fn/string/br2nl.js +22 -0
- package/dist/fn/string/camelToCss.d.ts +18 -0
- package/dist/fn/string/camelToCss.js +26 -0
- package/dist/fn/string/camelize.d.ts +20 -0
- package/dist/fn/string/camelize.js +27 -0
- package/dist/fn/string/correctCase.d.ts +18 -0
- package/dist/fn/string/correctCase.js +20 -0
- package/dist/fn/string/crc32.d.ts +2 -0
- package/dist/fn/string/crc32.js +20 -0
- package/dist/fn/string/dirName.d.ts +17 -0
- package/dist/fn/string/dirName.js +33 -0
- package/dist/fn/string/escapeDquotes.d.ts +2 -0
- package/dist/fn/string/escapeDquotes.js +8 -0
- package/dist/fn/string/escapeRegExp.d.ts +19 -0
- package/dist/fn/string/escapeRegExp.js +21 -0
- package/dist/fn/string/escapeSquotes.d.ts +2 -0
- package/dist/fn/string/escapeSquotes.js +8 -0
- package/dist/fn/string/escapeTicks.d.ts +2 -0
- package/dist/fn/string/escapeTicks.js +8 -0
- package/dist/fn/string/escapeUrl.d.ts +9 -0
- package/dist/fn/string/escapeUrl.js +47 -0
- package/dist/fn/string/fileExt.d.ts +38 -0
- package/dist/fn/string/fileExt.js +47 -0
- package/dist/fn/string/format.d.ts +2 -0
- package/dist/fn/string/format.js +14 -0
- package/dist/fn/string/formatBytes.d.ts +14 -0
- package/dist/fn/string/formatBytes.js +20 -0
- package/dist/fn/string/formatSize.d.ts +2 -0
- package/dist/fn/string/formatSize.js +12 -0
- package/dist/fn/string/hash.d.ts +7 -0
- package/dist/fn/string/hash.js +42 -0
- package/dist/fn/string/md5.d.ts +22 -0
- package/dist/fn/string/md5.js +142 -0
- package/dist/fn/string/nl2br.d.ts +17 -0
- package/dist/fn/string/nl2br.js +20 -0
- package/dist/fn/string/printf.d.ts +10 -0
- package/dist/fn/string/printf.js +15 -0
- package/dist/fn/string/quotes2html.d.ts +30 -0
- package/dist/fn/string/quotes2html.js +39 -0
- package/dist/fn/string/randomString.d.ts +28 -0
- package/dist/fn/string/randomString.js +72 -0
- package/dist/fn/string/removeAccents.d.ts +17 -0
- package/dist/fn/string/removeAccents.js +30 -0
- package/dist/fn/string/removeExtraSpaces.d.ts +7 -0
- package/dist/fn/string/removeExtraSpaces.js +9 -0
- package/dist/fn/string/removeHtmlComments.d.ts +2 -0
- package/dist/fn/string/removeHtmlComments.js +8 -0
- package/dist/fn/string/removeTrailingChars.d.ts +11 -0
- package/dist/fn/string/removeTrailingChars.js +25 -0
- package/dist/fn/string/repeat.d.ts +16 -0
- package/dist/fn/string/repeat.js +18 -0
- package/dist/fn/string/replaceAll.d.ts +23 -0
- package/dist/fn/string/replaceAll.js +29 -0
- package/dist/fn/string/sanitize.d.ts +17 -0
- package/dist/fn/string/sanitize.js +34 -0
- package/dist/fn/string/shorten.d.ts +27 -0
- package/dist/fn/string/shorten.js +42 -0
- package/dist/fn/string/simpleHash.d.ts +2 -0
- package/dist/fn/string/simpleHash.js +8 -0
- package/dist/fn/string/simpleHash1.d.ts +2 -0
- package/dist/fn/string/simpleHash1.js +10 -0
- package/dist/fn/string/simpleHash2.d.ts +2 -0
- package/dist/fn/string/simpleHash2.js +10 -0
- package/dist/fn/string/substr.d.ts +23 -0
- package/dist/fn/string/substr.js +38 -0
- package/dist/fn/string/trim.d.ts +2 -0
- package/dist/fn/string/trim.js +20 -0
- package/dist/fn/string/uniqString.d.ts +18 -0
- package/dist/fn/string/uniqString.js +49 -0
- package/dist/fn/style/addColors.d.ts +17 -0
- package/dist/fn/style/addColors.js +76 -0
- package/dist/fn/style/addStyle.d.ts +12 -0
- package/dist/fn/style/addStyle.js +20 -0
- package/dist/fn/style/animateCss.d.ts +13 -0
- package/dist/fn/style/animateCss.js +31 -0
- package/dist/fn/style/center.d.ts +16 -0
- package/dist/fn/style/center.js +40 -0
- package/dist/fn/style/cssExists.d.ts +12 -0
- package/dist/fn/style/cssExists.js +40 -0
- package/dist/fn/style/getCssVar.d.ts +7 -0
- package/dist/fn/style/getCssVar.js +12 -0
- package/dist/fn/style/getScrollBarSize.d.ts +2 -0
- package/dist/fn/style/getScrollBarSize.js +25 -0
- package/dist/fn/style/lightenDarkenHex.d.ts +20 -0
- package/dist/fn/style/lightenDarkenHex.js +45 -0
- package/dist/fn/style/outerHeight.d.ts +11 -0
- package/dist/fn/style/outerHeight.js +19 -0
- package/dist/fn/style/outerWidth.d.ts +10 -0
- package/dist/fn/style/outerWidth.js +16 -0
- package/dist/fn/style/resize.d.ts +2 -0
- package/dist/fn/style/resize.js +39 -0
- package/dist/fn/style/setCssVar.d.ts +8 -0
- package/dist/fn/style/setCssVar.js +14 -0
- package/dist/fn/type/checkType.d.ts +2 -0
- package/dist/fn/type/checkType.js +59 -0
- package/dist/fn/type/isArray.d.ts +14 -0
- package/dist/fn/type/isArray.js +23 -0
- package/dist/fn/type/isBlob.d.ts +9 -0
- package/dist/fn/type/isBlob.js +18 -0
- package/dist/fn/type/isBoolean.d.ts +16 -0
- package/dist/fn/type/isBoolean.js +25 -0
- package/dist/fn/type/isCanvas.d.ts +16 -0
- package/dist/fn/type/isCanvas.js +25 -0
- package/dist/fn/type/isColor.d.ts +31 -0
- package/dist/fn/type/isColor.js +45 -0
- package/dist/fn/type/isComment.d.ts +14 -0
- package/dist/fn/type/isComment.js +23 -0
- package/dist/fn/type/isCp.d.ts +2 -0
- package/dist/fn/type/isCp.js +17 -0
- package/dist/fn/type/isDate.d.ts +20 -0
- package/dist/fn/type/isDate.js +29 -0
- package/dist/fn/type/isDimension.d.ts +11 -0
- package/dist/fn/type/isDimension.js +24 -0
- package/dist/fn/type/isDom.d.ts +14 -0
- package/dist/fn/type/isDom.js +23 -0
- package/dist/fn/type/isEmail.d.ts +23 -0
- package/dist/fn/type/isEmail.js +37 -0
- package/dist/fn/type/isEmpty.d.ts +41 -0
- package/dist/fn/type/isEmpty.js +57 -0
- package/dist/fn/type/isEvent.d.ts +9 -0
- package/dist/fn/type/isEvent.js +18 -0
- package/dist/fn/type/isFunction.d.ts +16 -0
- package/dist/fn/type/isFunction.js +25 -0
- package/dist/fn/type/isHostname.d.ts +2 -0
- package/dist/fn/type/isHostname.js +16 -0
- package/dist/fn/type/isIP.d.ts +2 -0
- package/dist/fn/type/isIP.js +12 -0
- package/dist/fn/type/isInt.d.ts +18 -0
- package/dist/fn/type/isInt.js +27 -0
- package/dist/fn/type/isIterable.d.ts +27 -0
- package/dist/fn/type/isIterable.js +39 -0
- package/dist/fn/type/isNull.d.ts +14 -0
- package/dist/fn/type/isNull.js +23 -0
- package/dist/fn/type/isNumber.d.ts +19 -0
- package/dist/fn/type/isNumber.js +30 -0
- package/dist/fn/type/isObject.d.ts +19 -0
- package/dist/fn/type/isObject.js +28 -0
- package/dist/fn/type/isPercent.d.ts +14 -0
- package/dist/fn/type/isPercent.js +23 -0
- package/dist/fn/type/isPrimitive.d.ts +18 -0
- package/dist/fn/type/isPrimitive.js +27 -0
- package/dist/fn/type/isPromise.d.ts +18 -0
- package/dist/fn/type/isPromise.js +27 -0
- package/dist/fn/type/isPropSize.d.ts +2 -0
- package/dist/fn/type/isPropSize.js +12 -0
- package/dist/fn/type/isSQLDate.d.ts +10 -0
- package/dist/fn/type/isSQLDate.js +20 -0
- package/dist/fn/type/isSame.d.ts +41 -0
- package/dist/fn/type/isSame.js +72 -0
- package/dist/fn/type/isString.d.ts +14 -0
- package/dist/fn/type/isString.js +23 -0
- package/dist/fn/type/isSymbol.d.ts +15 -0
- package/dist/fn/type/isSymbol.js +24 -0
- package/dist/fn/type/isURL.d.ts +2 -0
- package/dist/fn/type/isURL.js +11 -0
- package/dist/fn/type/isValidDimension.d.ts +11 -0
- package/dist/fn/type/isValidDimension.js +24 -0
- package/dist/fn/type/isValidName.d.ts +27 -0
- package/dist/fn/type/isValidName.js +38 -0
- package/dist/fn/type/isValue.d.ts +26 -0
- package/dist/fn/type/isValue.js +36 -0
- package/dist/fn/type/isVue.d.ts +16 -0
- package/dist/fn/type/isVue.js +42 -0
- package/dist/fn.d.ts +4 -5
- package/dist/fn.js +226 -228
- package/package.json +1 -1
package/dist/fn.js
CHANGED
|
@@ -1,231 +1,230 @@
|
|
|
1
|
-
import { _addLoader } from './fn/_addLoader';
|
|
2
|
-
import { _compareValues } from './fn/_compareValues';
|
|
3
|
-
import { _deleteLoader } from './fn/_deleteLoader';
|
|
4
|
-
import { abort } from './fn/abort';
|
|
5
|
-
import { abortURL } from './fn/abortURL';
|
|
6
|
-
import { addColors } from './fn/addColors';
|
|
7
|
-
import { addInputs } from './fn/addInputs';
|
|
8
|
-
import { addStyle } from './fn/addStyle';
|
|
9
|
-
import { adjustHeight } from './fn/adjustHeight';
|
|
10
|
-
import { adjustSize } from './fn/adjustSize';
|
|
11
|
-
import { adjustWidth } from './fn/adjustWidth';
|
|
12
|
-
import { ajax } from './fn/ajax';
|
|
13
|
-
import { analyzeFunction } from './fn/analyzeFunction';
|
|
14
|
-
import { animateCss } from './fn/animateCss';
|
|
15
|
-
import { arrayBuffer2String } from './fn/arrayBuffer2String';
|
|
16
|
-
import { arrayFromProp } from './fn/arrayFromProp';
|
|
17
|
-
import { autoExtend } from './fn/autoExtend';
|
|
18
|
-
import { baseName } from './fn/baseName';
|
|
19
|
-
import { br2nl } from './fn/br2nl';
|
|
20
|
-
import { calendar } from './fn/calendar';
|
|
21
|
-
import { callback } from './fn/callback';
|
|
22
|
-
import { camelize } from './fn/camelize';
|
|
23
|
-
import { camelToCss } from './fn/camelToCss';
|
|
24
|
-
import { canvasToImage } from './fn/canvasToImage';
|
|
25
|
-
import { center } from './fn/center';
|
|
26
|
-
import { checkProps } from './fn/checkProps';
|
|
27
|
-
import { checkPropsDetails } from './fn/checkPropsDetails';
|
|
28
|
-
import { checkPropsOrDie } from './fn/checkPropsOrDie';
|
|
29
|
-
import { checkType } from './fn/checkType';
|
|
30
|
-
import { circularReplacer } from './fn/circularReplacer';
|
|
31
|
-
import { clone } from './fn/clone';
|
|
32
|
-
import { colorToHex } from './fn/colorToHex';
|
|
33
|
-
import { compare } from './fn/compare';
|
|
34
|
-
import { compareConditions } from './fn/compareConditions';
|
|
35
|
-
import { copy } from './fn/copy';
|
|
36
|
-
import { correctCase } from './fn/correctCase';
|
|
37
|
-
import { count } from './fn/count';
|
|
38
|
-
import { crc32 } from './fn/crc32';
|
|
39
|
-
import { createObject } from './fn/createObject';
|
|
40
|
-
import { cssExists } from './fn/cssExists';
|
|
41
|
-
import { date } from './fn/date';
|
|
42
|
-
import { dateSQL } from './fn/dateSQL';
|
|
43
|
-
import { daysInMonth } from './fn/daysInMonth';
|
|
44
|
-
import { deepPath } from './fn/deepPath';
|
|
45
|
-
import { defaultAjaxAbortFunction } from './fn/defaultAjaxAbortFunction';
|
|
46
|
-
import { defaultAjaxErrorFunction } from './fn/defaultAjaxErrorFunction';
|
|
47
|
-
import { defaultAlertFunction } from './fn/defaultAlertFunction';
|
|
48
|
-
import { defaultConfirmFunction } from './fn/defaultConfirmFunction';
|
|
49
|
-
import { defaultEndLoadingFunction } from './fn/defaultEndLoadingFunction';
|
|
50
|
-
import { defaultErrorFunction } from './fn/defaultErrorFunction';
|
|
51
|
-
import { defaultHistoryFunction } from './fn/defaultHistoryFunction';
|
|
52
|
-
import { defaultLinkFunction } from './fn/defaultLinkFunction';
|
|
53
|
-
import { defaultPostLinkFunction } from './fn/defaultPostLinkFunction';
|
|
54
|
-
import { defaultPreLinkFunction } from './fn/defaultPreLinkFunction';
|
|
55
|
-
import { defaultResizeFunction } from './fn/defaultResizeFunction';
|
|
56
|
-
import { defaultStartLoadingFunction } from './fn/defaultStartLoadingFunction';
|
|
57
|
-
import { deleteProp } from './fn/deleteProp';
|
|
58
|
-
import { diffObj } from './fn/diffObj';
|
|
59
|
-
import { dirName } from './fn/dirName';
|
|
60
|
-
import { download } from './fn/download';
|
|
61
|
-
import { downloadContent } from './fn/downloadContent';
|
|
62
|
-
import { each } from './fn/each';
|
|
63
|
-
import { eraseCookie } from './fn/eraseCookie';
|
|
64
|
-
import { error } from './fn/error';
|
|
65
|
-
import { escapeDquotes } from './fn/escapeDquotes';
|
|
66
|
-
import { escapeRegExp } from './fn/escapeRegExp';
|
|
67
|
-
import { escapeSquotes } from './fn/escapeSquotes';
|
|
68
|
-
import { escapeTicks } from './fn/escapeTicks';
|
|
69
|
-
import { escapeUrl } from './fn/escapeUrl';
|
|
70
|
-
import { extend } from './fn/extend';
|
|
71
|
-
import { extendOut } from './fn/extendOut';
|
|
72
|
-
import { fdate } from './fn/fdate';
|
|
73
|
-
import { fdatetime } from './fn/fdatetime';
|
|
74
|
-
import { fieldValue } from './fn/fieldValue';
|
|
75
|
-
import { fileExt } from './fn/fileExt';
|
|
76
|
-
import { filter } from './fn/filter';
|
|
77
|
-
import { filterToConditions } from './fn/filterToConditions';
|
|
78
|
-
import { findAll } from './fn/findAll';
|
|
79
|
-
import { fori } from './fn/fori';
|
|
80
|
-
import { forir } from './fn/forir';
|
|
81
|
-
import { format } from './fn/format';
|
|
82
|
-
import { formatBytes } from './fn/formatBytes';
|
|
83
|
-
import { formatDate } from './fn/formatDate';
|
|
84
|
-
import { formatSize } from './fn/formatSize';
|
|
85
|
-
import { formdata } from './fn/formdata';
|
|
86
|
-
import { fromXml } from './fn/fromXml';
|
|
87
|
-
import { ftime } from './fn/ftime';
|
|
88
|
-
import { getAllTags } from './fn/getAllTags';
|
|
89
|
-
import { getAncestors } from './fn/getAncestors';
|
|
90
|
-
import { getAttributes } from './fn/getAttributes';
|
|
91
|
-
import { getBrowserName } from './fn/getBrowserName';
|
|
92
|
-
import { getBrowserVersion } from './fn/getBrowserVersion';
|
|
93
|
-
import { getCookie } from './fn/getCookie';
|
|
94
|
-
import { getCssVar } from './fn/getCssVar';
|
|
95
|
-
import { getDay } from './fn/getDay';
|
|
96
|
-
import { getDeviceType } from './fn/getDeviceType';
|
|
97
|
-
import { getEventData } from './fn/getEventData';
|
|
98
|
-
import { getField } from './fn/getField';
|
|
99
|
-
import { getFieldValues } from './fn/getFieldValues';
|
|
100
|
-
import { getHtml } from './fn/getHtml';
|
|
101
|
-
import { getHTMLOfSelection } from './fn/getHTMLOfSelection';
|
|
102
|
-
import { getLoader } from './fn/getLoader';
|
|
103
|
-
import { getPath } from './fn/getPath';
|
|
104
|
-
import { getProp } from './fn/getProp';
|
|
105
|
-
import { getProperty } from './fn/getProperty';
|
|
106
|
-
import { getRequestId } from './fn/getRequestId';
|
|
107
|
-
import { getRow } from './fn/getRow';
|
|
108
|
-
import { getScrollBarSize } from './fn/getScrollBarSize';
|
|
109
|
-
import { getText } from './fn/getText';
|
|
110
|
-
import { getTimeoff } from './fn/getTimeoff';
|
|
111
|
-
import { happy } from './fn/happy';
|
|
112
|
-
import { hash } from './fn/hash';
|
|
113
|
-
import { hex2rgb } from './fn/hex2rgb';
|
|
114
|
-
import { history } from './fn/history';
|
|
115
|
-
import { html2text } from './fn/html2text';
|
|
116
|
-
import { imageToCanvas } from './fn/imageToCanvas';
|
|
117
|
-
import { imgToBase64 } from './fn/imgToBase64';
|
|
118
|
-
import { info } from './fn/info';
|
|
1
|
+
import { _addLoader } from './fn/ajax/_addLoader';
|
|
2
|
+
import { _compareValues } from './fn/object/_compareValues';
|
|
3
|
+
import { _deleteLoader } from './fn/ajax/_deleteLoader';
|
|
4
|
+
import { abort } from './fn/ajax/abort';
|
|
5
|
+
import { abortURL } from './fn/ajax/abortURL';
|
|
6
|
+
import { addColors } from './fn/style/addColors';
|
|
7
|
+
import { addInputs } from './fn/form/addInputs';
|
|
8
|
+
import { addStyle } from './fn/style/addStyle';
|
|
9
|
+
import { adjustHeight } from './fn/html/adjustHeight';
|
|
10
|
+
import { adjustSize } from './fn/html/adjustSize';
|
|
11
|
+
import { adjustWidth } from './fn/html/adjustWidth';
|
|
12
|
+
import { ajax } from './fn/ajax/ajax';
|
|
13
|
+
import { analyzeFunction } from './fn/misc/analyzeFunction';
|
|
14
|
+
import { animateCss } from './fn/style/animateCss';
|
|
15
|
+
import { arrayBuffer2String } from './fn/convert/arrayBuffer2String';
|
|
16
|
+
import { arrayFromProp } from './fn/object/arrayFromProp';
|
|
17
|
+
import { autoExtend } from './fn/object/autoExtend';
|
|
18
|
+
import { baseName } from './fn/string/baseName';
|
|
19
|
+
import { br2nl } from './fn/string/br2nl';
|
|
20
|
+
import { calendar } from './fn/datetime/calendar';
|
|
21
|
+
import { callback } from './fn/ajax/callback';
|
|
22
|
+
import { camelize } from './fn/string/camelize';
|
|
23
|
+
import { camelToCss } from './fn/string/camelToCss';
|
|
24
|
+
import { canvasToImage } from './fn/convert/canvasToImage';
|
|
25
|
+
import { center } from './fn/style/center';
|
|
26
|
+
import { checkProps } from './fn/object/checkProps';
|
|
27
|
+
import { checkPropsDetails } from './fn/object/checkPropsDetails';
|
|
28
|
+
import { checkPropsOrDie } from './fn/object/checkPropsOrDie';
|
|
29
|
+
import { checkType } from './fn/type/checkType';
|
|
30
|
+
import { circularReplacer } from './fn/object/circularReplacer';
|
|
31
|
+
import { clone } from './fn/object/clone';
|
|
32
|
+
import { colorToHex } from './fn/convert/colorToHex';
|
|
33
|
+
import { compare } from './fn/object/compare';
|
|
34
|
+
import { compareConditions } from './fn/object/compareConditions';
|
|
35
|
+
import { copy } from './fn/browser/copy';
|
|
36
|
+
import { correctCase } from './fn/string/correctCase';
|
|
37
|
+
import { count } from './fn/object/count';
|
|
38
|
+
import { crc32 } from './fn/string/crc32';
|
|
39
|
+
import { createObject } from './fn/object/createObject';
|
|
40
|
+
import { cssExists } from './fn/style/cssExists';
|
|
41
|
+
import { date } from './fn/datetime/date';
|
|
42
|
+
import { dateSQL } from './fn/datetime/dateSQL';
|
|
43
|
+
import { daysInMonth } from './fn/datetime/daysInMonth';
|
|
44
|
+
import { deepPath } from './fn/object/deepPath';
|
|
45
|
+
import { defaultAjaxAbortFunction } from './fn/default/defaultAjaxAbortFunction';
|
|
46
|
+
import { defaultAjaxErrorFunction } from './fn/default/defaultAjaxErrorFunction';
|
|
47
|
+
import { defaultAlertFunction } from './fn/default/defaultAlertFunction';
|
|
48
|
+
import { defaultConfirmFunction } from './fn/default/defaultConfirmFunction';
|
|
49
|
+
import { defaultEndLoadingFunction } from './fn/default/defaultEndLoadingFunction';
|
|
50
|
+
import { defaultErrorFunction } from './fn/default/defaultErrorFunction';
|
|
51
|
+
import { defaultHistoryFunction } from './fn/default/defaultHistoryFunction';
|
|
52
|
+
import { defaultLinkFunction } from './fn/default/defaultLinkFunction';
|
|
53
|
+
import { defaultPostLinkFunction } from './fn/default/defaultPostLinkFunction';
|
|
54
|
+
import { defaultPreLinkFunction } from './fn/default/defaultPreLinkFunction';
|
|
55
|
+
import { defaultResizeFunction } from './fn/default/defaultResizeFunction';
|
|
56
|
+
import { defaultStartLoadingFunction } from './fn/default/defaultStartLoadingFunction';
|
|
57
|
+
import { deleteProp } from './fn/object/deleteProp';
|
|
58
|
+
import { diffObj } from './fn/object/diffObj';
|
|
59
|
+
import { dirName } from './fn/string/dirName';
|
|
60
|
+
import { download } from './fn/ajax/download';
|
|
61
|
+
import { downloadContent } from './fn/ajax/downloadContent';
|
|
62
|
+
import { each } from './fn/loop/each';
|
|
63
|
+
import { eraseCookie } from './fn/browser/eraseCookie';
|
|
64
|
+
import { error } from './fn/browser/error';
|
|
65
|
+
import { escapeDquotes } from './fn/string/escapeDquotes';
|
|
66
|
+
import { escapeRegExp } from './fn/string/escapeRegExp';
|
|
67
|
+
import { escapeSquotes } from './fn/string/escapeSquotes';
|
|
68
|
+
import { escapeTicks } from './fn/string/escapeTicks';
|
|
69
|
+
import { escapeUrl } from './fn/string/escapeUrl';
|
|
70
|
+
import { extend } from './fn/object/extend';
|
|
71
|
+
import { extendOut } from './fn/object/extendOut';
|
|
72
|
+
import { fdate } from './fn/datetime/fdate';
|
|
73
|
+
import { fdatetime } from './fn/datetime/fdatetime';
|
|
74
|
+
import { fieldValue } from './fn/form/fieldValue';
|
|
75
|
+
import { fileExt } from './fn/string/fileExt';
|
|
76
|
+
import { filter } from './fn/object/filter';
|
|
77
|
+
import { filterToConditions } from './fn/object/filterToConditions';
|
|
78
|
+
import { findAll } from './fn/object/findAll';
|
|
79
|
+
import { fori } from './fn/loop/fori';
|
|
80
|
+
import { forir } from './fn/loop/forir';
|
|
81
|
+
import { format } from './fn/string/format';
|
|
82
|
+
import { formatBytes } from './fn/string/formatBytes';
|
|
83
|
+
import { formatDate } from './fn/datetime/formatDate';
|
|
84
|
+
import { formatSize } from './fn/string/formatSize';
|
|
85
|
+
import { formdata } from './fn/form/formdata';
|
|
86
|
+
import { fromXml } from './fn/convert/fromXml';
|
|
87
|
+
import { ftime } from './fn/datetime/ftime';
|
|
88
|
+
import { getAllTags } from './fn/html/getAllTags';
|
|
89
|
+
import { getAncestors } from './fn/html/getAncestors';
|
|
90
|
+
import { getAttributes } from './fn/html/getAttributes';
|
|
91
|
+
import { getBrowserName } from './fn/browser/getBrowserName';
|
|
92
|
+
import { getBrowserVersion } from './fn/browser/getBrowserVersion';
|
|
93
|
+
import { getCookie } from './fn/browser/getCookie';
|
|
94
|
+
import { getCssVar } from './fn/style/getCssVar';
|
|
95
|
+
import { getDay } from './fn/datetime/getDay';
|
|
96
|
+
import { getDeviceType } from './fn/browser/getDeviceType';
|
|
97
|
+
import { getEventData } from './fn/browser/getEventData';
|
|
98
|
+
import { getField } from './fn/object/getField';
|
|
99
|
+
import { getFieldValues } from './fn/object/getFieldValues';
|
|
100
|
+
import { getHtml } from './fn/html/getHtml';
|
|
101
|
+
import { getHTMLOfSelection } from './fn/html/getHTMLOfSelection';
|
|
102
|
+
import { getLoader } from './fn/ajax/getLoader';
|
|
103
|
+
import { getPath } from './fn/html/getPath';
|
|
104
|
+
import { getProp } from './fn/object/getProp';
|
|
105
|
+
import { getProperty } from './fn/object/getProperty';
|
|
106
|
+
import { getRequestId } from './fn/ajax/getRequestId';
|
|
107
|
+
import { getRow } from './fn/object/getRow';
|
|
108
|
+
import { getScrollBarSize } from './fn/style/getScrollBarSize';
|
|
109
|
+
import { getText } from './fn/html/getText';
|
|
110
|
+
import { getTimeoff } from './fn/misc/getTimeoff';
|
|
111
|
+
import { happy } from './fn/browser/happy';
|
|
112
|
+
import { hash } from './fn/string/hash';
|
|
113
|
+
import { hex2rgb } from './fn/convert/hex2rgb';
|
|
114
|
+
import { history } from './fn/browser/history';
|
|
115
|
+
import { html2text } from './fn/html/html2text';
|
|
116
|
+
import { imageToCanvas } from './fn/convert/imageToCanvas';
|
|
117
|
+
import { imgToBase64 } from './fn/convert/imgToBase64';
|
|
118
|
+
import { info } from './fn/browser/info';
|
|
119
119
|
import { init } from './fn/init';
|
|
120
|
-
import { isActiveInterface } from './fn/isActiveInterface';
|
|
121
|
-
import { isArray } from './fn/isArray';
|
|
122
|
-
import { isBlob } from './fn/isBlob';
|
|
123
|
-
import { isBoolean } from './fn/isBoolean';
|
|
124
|
-
import { isCanvas } from './fn/isCanvas';
|
|
125
|
-
import { isColor } from './fn/isColor';
|
|
126
|
-
import { isComment } from './fn/isComment';
|
|
127
|
-
import { isCp } from './fn/isCp';
|
|
128
|
-
import { isDate } from './fn/isDate';
|
|
129
|
-
import { isDesktopDevice } from './fn/isDesktopDevice';
|
|
130
|
-
import { isDimension } from './fn/isDimension';
|
|
131
|
-
import { isDom } from './fn/isDom';
|
|
132
|
-
import { isEmail } from './fn/isEmail';
|
|
133
|
-
import { isEmpty } from './fn/isEmpty';
|
|
134
|
-
import { isEvent } from './fn/isEvent';
|
|
135
|
-
import { isFocused } from './fn/isFocused';
|
|
136
|
-
import { isFunction } from './fn/isFunction';
|
|
137
|
-
import { isHostname } from './fn/isHostname';
|
|
138
|
-
import { isInside } from './fn/isInside';
|
|
139
|
-
import { isInt } from './fn/isInt';
|
|
140
|
-
import { isIP } from './fn/isIP';
|
|
141
|
-
import { isIterable } from './fn/isIterable';
|
|
142
|
-
import { isMobile } from './fn/isMobile';
|
|
143
|
-
import { isMobileDevice } from './fn/isMobileDevice';
|
|
144
|
-
import { isNull } from './fn/isNull';
|
|
145
|
-
import { isNumber } from './fn/isNumber';
|
|
146
|
-
import { isObject } from './fn/isObject';
|
|
147
|
-
import { isPercent } from './fn/isPercent';
|
|
148
|
-
import { isPrimitive } from './fn/isPrimitive';
|
|
149
|
-
import { isPromise } from './fn/isPromise';
|
|
150
|
-
import { isPropSize } from './fn/isPropSize';
|
|
151
|
-
import { isSame } from './fn/isSame';
|
|
152
|
-
import { isSQLDate } from './fn/isSQLDate';
|
|
153
|
-
import { isString } from './fn/isString';
|
|
154
|
-
import { isSymbol } from './fn/isSymbol';
|
|
155
|
-
import { isTabletDevice } from './fn/isTabletDevice';
|
|
156
|
-
import { isURL } from './fn/isURL';
|
|
157
|
-
import { isValidDimension } from './fn/isValidDimension';
|
|
158
|
-
import { isValidName } from './fn/isValidName';
|
|
159
|
-
import { isValue } from './fn/isValue';
|
|
160
|
-
import { isVue } from './fn/isVue';
|
|
161
|
-
import { iterate } from './fn/iterate';
|
|
162
|
-
import { lightenDarkenHex } from './fn/lightenDarkenHex';
|
|
163
|
-
import { link } from './fn/link';
|
|
164
|
-
import { log } from './fn/log';
|
|
165
|
-
import { makeReactive } from './fn/makeReactive';
|
|
166
|
-
import { map } from './fn/map';
|
|
167
|
-
import { md5 } from './fn/md5';
|
|
168
|
-
import { money } from './fn/money';
|
|
169
|
-
import { move } from './fn/move';
|
|
170
|
-
import { multiorder } from './fn/multiorder';
|
|
171
|
-
import { nl2br } from './fn/nl2br';
|
|
172
|
-
import { numProperties } from './fn/numProperties';
|
|
173
|
-
import { objectToFormData } from './fn/objectToFormData';
|
|
174
|
-
import { order } from './fn/order';
|
|
175
|
-
import { outerHeight } from './fn/outerHeight';
|
|
176
|
-
import { outerWidth } from './fn/outerWidth';
|
|
177
|
-
import { percent } from './fn/percent';
|
|
178
|
-
import { pickValue } from './fn/pickValue';
|
|
179
|
-
import { post } from './fn/post';
|
|
180
|
-
import { postOut } from './fn/postOut';
|
|
181
|
-
import { printf } from './fn/printf';
|
|
182
|
-
import { quotes2html } from './fn/quotes2html';
|
|
183
|
-
import { randomInt } from './fn/randomInt';
|
|
184
|
-
import { randomString } from './fn/randomString';
|
|
185
|
-
import { removeAccents } from './fn/removeAccents';
|
|
186
|
-
import { removeEmpty } from './fn/removeEmpty';
|
|
187
|
-
import { removeExtraSpaces } from './fn/removeExtraSpaces';
|
|
188
|
-
import { removeHtmlComments } from './fn/removeHtmlComments';
|
|
189
|
-
import { removePrivateProp } from './fn/removePrivateProp';
|
|
190
|
-
import { removeTrailingChars } from './fn/removeTrailingChars';
|
|
191
|
-
import { repeat } from './fn/repeat';
|
|
192
|
-
import { replaceAll } from './fn/replaceAll';
|
|
193
|
-
import { replaceSelection } from './fn/replaceSelection';
|
|
194
|
-
import { resize } from './fn/resize';
|
|
195
|
-
import { rgb2hex } from './fn/rgb2hex';
|
|
196
|
-
import { riterate } from './fn/riterate';
|
|
197
|
-
import { roundDecimal } from './fn/roundDecimal';
|
|
198
|
-
import { sanitize } from './fn/sanitize';
|
|
199
|
-
import { search } from './fn/search';
|
|
200
|
-
import { selectElementText } from './fn/selectElementText';
|
|
201
|
-
import { selector } from './fn/selector';
|
|
202
|
-
import { setCookie } from './fn/setCookie';
|
|
203
|
-
import { setCssVar } from './fn/setCssVar';
|
|
204
|
-
import { setNavigationVars } from './fn/setNavigationVars';
|
|
205
|
-
import { setProp } from './fn/setProp';
|
|
206
|
-
import { setProperty } from './fn/setProperty';
|
|
207
|
-
import { shorten } from './fn/shorten';
|
|
208
|
-
import { shortenObj } from './fn/shortenObj';
|
|
209
|
-
import { shuffle } from './fn/shuffle';
|
|
210
|
-
import { simpleHash } from './fn/simpleHash';
|
|
211
|
-
import { simpleHash1 } from './fn/simpleHash1';
|
|
212
|
-
import { simpleHash2 } from './fn/simpleHash2';
|
|
213
|
-
import { startChrono, stopChrono } from './fn/chrono';
|
|
214
|
-
import {
|
|
215
|
-
import {
|
|
216
|
-
import {
|
|
217
|
-
import {
|
|
218
|
-
import {
|
|
219
|
-
import {
|
|
220
|
-
import {
|
|
221
|
-
import {
|
|
222
|
-
import {
|
|
223
|
-
import {
|
|
224
|
-
import {
|
|
225
|
-
import {
|
|
226
|
-
import {
|
|
227
|
-
import {
|
|
228
|
-
import { warning } from './fn/warning';
|
|
120
|
+
import { isActiveInterface } from './fn/browser/isActiveInterface';
|
|
121
|
+
import { isArray } from './fn/type/isArray';
|
|
122
|
+
import { isBlob } from './fn/type/isBlob';
|
|
123
|
+
import { isBoolean } from './fn/type/isBoolean';
|
|
124
|
+
import { isCanvas } from './fn/type/isCanvas';
|
|
125
|
+
import { isColor } from './fn/type/isColor';
|
|
126
|
+
import { isComment } from './fn/type/isComment';
|
|
127
|
+
import { isCp } from './fn/type/isCp';
|
|
128
|
+
import { isDate } from './fn/type/isDate';
|
|
129
|
+
import { isDesktopDevice } from './fn/browser/isDesktopDevice';
|
|
130
|
+
import { isDimension } from './fn/type/isDimension';
|
|
131
|
+
import { isDom } from './fn/type/isDom';
|
|
132
|
+
import { isEmail } from './fn/type/isEmail';
|
|
133
|
+
import { isEmpty } from './fn/type/isEmpty';
|
|
134
|
+
import { isEvent } from './fn/type/isEvent';
|
|
135
|
+
import { isFocused } from './fn/browser/isFocused';
|
|
136
|
+
import { isFunction } from './fn/type/isFunction';
|
|
137
|
+
import { isHostname } from './fn/type/isHostname';
|
|
138
|
+
import { isInside } from './fn/html/isInside';
|
|
139
|
+
import { isInt } from './fn/type/isInt';
|
|
140
|
+
import { isIP } from './fn/type/isIP';
|
|
141
|
+
import { isIterable } from './fn/type/isIterable';
|
|
142
|
+
import { isMobile } from './fn/browser/isMobile';
|
|
143
|
+
import { isMobileDevice } from './fn/browser/isMobileDevice';
|
|
144
|
+
import { isNull } from './fn/type/isNull';
|
|
145
|
+
import { isNumber } from './fn/type/isNumber';
|
|
146
|
+
import { isObject } from './fn/type/isObject';
|
|
147
|
+
import { isPercent } from './fn/type/isPercent';
|
|
148
|
+
import { isPrimitive } from './fn/type/isPrimitive';
|
|
149
|
+
import { isPromise } from './fn/type/isPromise';
|
|
150
|
+
import { isPropSize } from './fn/type/isPropSize';
|
|
151
|
+
import { isSame } from './fn/type/isSame';
|
|
152
|
+
import { isSQLDate } from './fn/type/isSQLDate';
|
|
153
|
+
import { isString } from './fn/type/isString';
|
|
154
|
+
import { isSymbol } from './fn/type/isSymbol';
|
|
155
|
+
import { isTabletDevice } from './fn/browser/isTabletDevice';
|
|
156
|
+
import { isURL } from './fn/type/isURL';
|
|
157
|
+
import { isValidDimension } from './fn/type/isValidDimension';
|
|
158
|
+
import { isValidName } from './fn/type/isValidName';
|
|
159
|
+
import { isValue } from './fn/type/isValue';
|
|
160
|
+
import { isVue } from './fn/type/isVue';
|
|
161
|
+
import { iterate } from './fn/loop/iterate';
|
|
162
|
+
import { lightenDarkenHex } from './fn/style/lightenDarkenHex';
|
|
163
|
+
import { link } from './fn/ajax/link';
|
|
164
|
+
import { log } from './fn/browser/log';
|
|
165
|
+
import { makeReactive } from './fn/html/makeReactive';
|
|
166
|
+
import { map } from './fn/object/map';
|
|
167
|
+
import { md5 } from './fn/string/md5';
|
|
168
|
+
import { money } from './fn/misc/money';
|
|
169
|
+
import { move } from './fn/object/move';
|
|
170
|
+
import { multiorder } from './fn/object/multiorder';
|
|
171
|
+
import { nl2br } from './fn/string/nl2br';
|
|
172
|
+
import { numProperties } from './fn/object/numProperties';
|
|
173
|
+
import { objectToFormData } from './fn/form/objectToFormData';
|
|
174
|
+
import { order } from './fn/object/order';
|
|
175
|
+
import { outerHeight } from './fn/style/outerHeight';
|
|
176
|
+
import { outerWidth } from './fn/style/outerWidth';
|
|
177
|
+
import { percent } from './fn/misc/percent';
|
|
178
|
+
import { pickValue } from './fn/object/pickValue';
|
|
179
|
+
import { post } from './fn/ajax/post';
|
|
180
|
+
import { postOut } from './fn/ajax/postOut';
|
|
181
|
+
import { printf } from './fn/string/printf';
|
|
182
|
+
import { quotes2html } from './fn/string/quotes2html';
|
|
183
|
+
import { randomInt } from './fn/misc/randomInt';
|
|
184
|
+
import { randomString } from './fn/string/randomString';
|
|
185
|
+
import { removeAccents } from './fn/string/removeAccents';
|
|
186
|
+
import { removeEmpty } from './fn/object/removeEmpty';
|
|
187
|
+
import { removeExtraSpaces } from './fn/string/removeExtraSpaces';
|
|
188
|
+
import { removeHtmlComments } from './fn/string/removeHtmlComments';
|
|
189
|
+
import { removePrivateProp } from './fn/object/removePrivateProp';
|
|
190
|
+
import { removeTrailingChars } from './fn/string/removeTrailingChars';
|
|
191
|
+
import { repeat } from './fn/string/repeat';
|
|
192
|
+
import { replaceAll } from './fn/string/replaceAll';
|
|
193
|
+
import { replaceSelection } from './fn/browser/replaceSelection';
|
|
194
|
+
import { resize } from './fn/style/resize';
|
|
195
|
+
import { rgb2hex } from './fn/convert/rgb2hex';
|
|
196
|
+
import { riterate } from './fn/loop/riterate';
|
|
197
|
+
import { roundDecimal } from './fn/misc/roundDecimal';
|
|
198
|
+
import { sanitize } from './fn/string/sanitize';
|
|
199
|
+
import { search } from './fn/object/search';
|
|
200
|
+
import { selectElementText } from './fn/browser/selectElementText';
|
|
201
|
+
import { selector } from './fn/html/selector';
|
|
202
|
+
import { setCookie } from './fn/browser/setCookie';
|
|
203
|
+
import { setCssVar } from './fn/style/setCssVar';
|
|
204
|
+
import { setNavigationVars } from './fn/ajax/setNavigationVars';
|
|
205
|
+
import { setProp } from './fn/object/setProp';
|
|
206
|
+
import { setProperty } from './fn/object/setProperty';
|
|
207
|
+
import { shorten } from './fn/string/shorten';
|
|
208
|
+
import { shortenObj } from './fn/object/shortenObj';
|
|
209
|
+
import { shuffle } from './fn/object/shuffle';
|
|
210
|
+
import { simpleHash } from './fn/string/simpleHash';
|
|
211
|
+
import { simpleHash1 } from './fn/string/simpleHash1';
|
|
212
|
+
import { simpleHash2 } from './fn/string/simpleHash2';
|
|
213
|
+
import { startChrono, stopChrono } from './fn/datetime/chrono';
|
|
214
|
+
import { string2ArrayBuffer } from './fn/convert/string2ArrayBuffer';
|
|
215
|
+
import { submit } from './fn/form/submit';
|
|
216
|
+
import { substr } from './fn/string/substr';
|
|
217
|
+
import { sum } from './fn/object/sum';
|
|
218
|
+
import { timestamp } from './fn/datetime/timestamp';
|
|
219
|
+
import { toCSV } from './fn/convert/toCSV';
|
|
220
|
+
import { toggleFullScreen } from './fn/browser/toggleFullScreen';
|
|
221
|
+
import { translate } from './fn/misc/translate';
|
|
222
|
+
import { treatAjaxArguments } from './fn/ajax/treatAjaxArguments';
|
|
223
|
+
import { trim } from './fn/string/trim';
|
|
224
|
+
import { uniqString } from './fn/string/uniqString';
|
|
225
|
+
import { unique } from './fn/object/unique';
|
|
226
|
+
import { upload } from './fn/ajax/upload';
|
|
227
|
+
import { warning } from './fn/browser/warning';
|
|
229
228
|
const fn = {
|
|
230
229
|
_addLoader,
|
|
231
230
|
_compareValues,
|
|
@@ -440,7 +439,6 @@ const fn = {
|
|
|
440
439
|
simpleHash1,
|
|
441
440
|
simpleHash2,
|
|
442
441
|
startChrono,
|
|
443
|
-
stat,
|
|
444
442
|
stopChrono,
|
|
445
443
|
string2ArrayBuffer,
|
|
446
444
|
submit,
|