sf-i-events 1.0.949 → 1.0.951
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/dev/index.html +2 -31
- package/package.json +1 -1
- package/sf-i-events.d.ts +2 -0
- package/sf-i-events.js +651 -435
- package/src/sf-i-events.ts +690 -486
- package/src/util.ts +1 -0
package/src/util.ts
CHANGED
|
@@ -670,6 +670,7 @@ function compareObjects(obj1: any, obj2: any): any {
|
|
|
670
670
|
// Case: primitives
|
|
671
671
|
return obj1 !== obj2 ? [obj1, obj2] : {};
|
|
672
672
|
}
|
|
673
|
+
|
|
673
674
|
const exportFunctions = {
|
|
674
675
|
callApiPresignedDelete, callApiPresignedGet, callApiPresigned, jsonObjectToHtml, clearListeners, isInteger, callApi, validateName, readCookie, timeSince, createDiagonalPattern1, createDiagonalPattern2, createDiagonalPattern3, getRandomColor, convertToCSV, parseCsv, titleCase, alphabeticalSort, percentageString, getCurrentFiscal, getDateTimeStrings, getUsermap, getProjectConfigHome, setFeatures, getFeatures, getProjectUsermap, downloadExcelFromCSV, isJSONParsable, isVisible, compareObjects
|
|
675
676
|
};
|