MCPcopy Create free account
hub / github.com/aidenybai/bippy / parseOpera9

Function parseOpera9

packages/bippy/src/source/parse-stack.ts:175–192  ·  view source on GitHub ↗
(error: Error, options?: ParseOptions)

Source from the content-addressed store, hash-verified

173
174export const parseFFOrSafariString = (stack: string): StackFrame[] => parseLines(stack, false);
175
176export const createStackParser = () => {
177 const v8Frames = new Map<string, StackFrame>();
178 const safariFrames = new Map<string, StackFrame>();
179 return (stack: string): StackFrame[] => {
180 const isV8 = CHROME_IE_STACK_REGEXP.test(stack);
181 return parseLines(stack, isV8, isV8 ? v8Frames : safariFrames);
182 };
183};

Callers 1

parseOperaFunction · 0.85

Calls 1

applySliceFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…