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

Method usages

lib/internal/crypto/keys.js:1087–1095  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1085 }
1086
1087 get usages() {
1088 const slots = getSlots(this);
1089 let cached = slots[kSlotClonedUsages];
1090 if (cached === undefined) {
1091 cached = ArrayPrototypeSlice(getCryptoKeyUsagesFromSlots(slots), 0);
1092 slots[kSlotClonedUsages] = cached;
1093 }
1094 return cached;
1095 }
1096 }
1097
1098 class InternalCryptoKey extends NativeCryptoKey {

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected