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

Method get

lib/internal/mime.js:154–161  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

152 }
153
154 get(name) {
155 this.#parse();
156 const data = this.#data;
157 if (data.has(name)) {
158 return data.get(name);
159 }
160 return null;
161 }
162
163 has(name) {
164 this.#parse();

Callers

nothing calls this directly

Calls 3

#parseMethod · 0.95
hasMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected