remove console stmt

This commit is contained in:
Ashley Engelund (weedySeaDragon @ github) 2022-11-21 16:35:02 -08:00
parent fdbc4ce0ed
commit 22993e8b6c

View File

@ -2,6 +2,5 @@ import type { DiagramDetector } from '../../diagram-api/types';
export const pieDetector: DiagramDetector = (txt) => {
const logOutput = txt.match(/^\s*pie/) !== null || txt.match(/^\s*bar/) !== null;
console.log(logOutput);
return logOutput;
};