2023-05-23 13:25:02 +00:00
|
|
|
/**
|
|
|
|
* ==============================================================================
|
|
|
|
* Imports
|
|
|
|
* ==============================================================================
|
|
|
|
*/
|
2023-05-23 15:26:05 +00:00
|
|
|
const imageInputFileToBase64 = require("./media/imageInputFileToBase64");
|
|
|
|
const imageInputToBase64 = require("./media/imageInputToBase64");
|
2023-05-23 13:25:02 +00:00
|
|
|
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
/** ****************************************************************************** */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ==============================================================================
|
|
|
|
* Media Functions Object
|
|
|
|
* ==============================================================================
|
|
|
|
*/
|
|
|
|
const media = {
|
|
|
|
imageInputToBase64: imageInputToBase64,
|
|
|
|
imageInputFileToBase64: imageInputFileToBase64,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ==============================================================================
|
|
|
|
* Main Export
|
|
|
|
* ==============================================================================
|
|
|
|
*/
|
|
|
|
const datasquirelClient = {
|
|
|
|
media: media,
|
|
|
|
};
|
|
|
|
|
2023-05-23 15:19:23 +00:00
|
|
|
module.exports = datasquirelClient;
|
2023-05-23 13:25:02 +00:00
|
|
|
|
|
|
|
/** ********************************************** */
|
|
|
|
/** ********************************************** */
|
|
|
|
/** ********************************************** */
|