@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
38 lines (36 loc) • 1.64 kB
JavaScript
/**
* CodeAnalizerComment: Updated 2 imports on 2024-09-22 14:49:52
* Update:: import { IFPSWindowProps } to '@mikezimm/fps-core-v7/lib/banner/features/FPSDOM/IFPSWindowProps;'
* Update:: import { IFPSSectionStyle } to '@mikezimm/fps-core-v7/lib/banner/features/FPSDOM/IFPSSection;'
*/
/**
* CodeAnalizerComment: Updated 3 imports on 2024-09-21 23:07:24
* Update:: import { check4This } to '@mikezimm/fps-core-v7/lib/logic/Links/CheckSearch;'
* Update:: import { IFPSWindowProps } to '@mikezimm/fps-core-v7/lib/banner/features/FPSDOM/IFPSWindowProps;'
* Update:: import { IFPSSectionStyle } to '@mikezimm/fps-core-v7/lib/banner/features/FPSDOM/IFPSSection;'
*/
import { check4This, Check4 } from '@mikezimm/fps-core-v7/lib/logic/Links/CheckSearch';
/**
* This will just send standard message to the console if it's needed
* @param consoleResult
* @param result
* @param section
*/
export function sendStandardConsole(consoleResult, result, section) {
if (consoleResult === true) { //winFPS createWinProps
console.log(`winFPS setSecStyle ${result}: ${section.title}`, section);
}
}
/**
* This will just send standard message to the console if it's needed
* @param consoleResult
* @param result
* @param section
*/
export function sendFPSWindowConsole(consoleResult, result, FPSOptions) {
if (consoleResult === true && check4This(Check4.fpsInitRender_Eq_true) === true) {
console.log(`winFPS sendFPSWinCon ${result}: FPSOptions`, FPSOptions);
console.log(`winFPS sendFPSWinCon ${result}: Window`, window);
}
}
//# sourceMappingURL=console.js.map