import Constants from "../../Models/Constants"; import {Utils} from "../../Utils"; export default class Img { public static runningFromConsole = false; static AsData(source:string){ if(Utils.runningFromConsole){ return source; } return `data:image/svg+xml;base64,${(btoa(source))}`; } static AsImageElement(source: string): string{ return ``; } }