MCPcopy Create free account
hub / github.com/angular/dev-infra / generateMask

Function generateMask

github-actions/saucelabs/set-saucelabs-env.js:17444–17450  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17442 function isTextBinaryFrame(opcode) {
17443 return opcode === opcodes.TEXT || opcode === opcodes.BINARY;
17444 }
17445 function isValidOpcode(opcode) {
17446 return isTextBinaryFrame(opcode) || isContinuationFrame(opcode) || isControlFrame(opcode);
17447 }
17448 function parseExtensions(extensions) {
17449 const position = { position: 0 };
17450 const extensionList = /* @__PURE__ */ new Map();
17451 while (position.position < extensions.length) {
17452 const pair = collectASequenceOfCodePointsFast(";", extensions, position);
17453 const [name, value = ""] = pair.split("=");

Callers 1

createFrameMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected