MCPcopy Index your code
hub / github.com/nodejs/node / parameterString

Function parameterString

test/fixtures/wpt/WebCryptoAPI/generateKey/successes.js:57–65  ·  view source on GitHub ↗
(algorithm, extractable, usages)

Source from the content-addressed store, hash-verified

55 });
56
57 function parameterString(algorithm, extractable, usages) {
58 var result = "(" +
59 objectToString(algorithm) + ", " +
60 objectToString(extractable) + ", " +
61 objectToString(usages) +
62 ")";
63
64 return result;
65 }
66
67 // Test that a given combination of parameters is successful
68 function testSuccess(algorithm, extractable, usages, resultType, testTag) {

Callers 1

testSuccessFunction · 0.70

Calls 1

objectToStringFunction · 0.85

Tested by

no test coverage detected