MCPcopy Index your code
hub / github.com/socketio/socket.io / _get

Function _get

client-dist/socket.io.js:176–191  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

174 return object;
175 }
176 function _get() {
177 if (typeof Reflect !== "undefined" && Reflect.get) {
178 _get = Reflect.get.bind();
179 } else {
180 _get = function _get(target, property, receiver) {
181 var base = _superPropBase(target, property);
182 if (!base) return;
183 var desc = Object.getOwnPropertyDescriptor(base, property);
184 if (desc.get) {
185 return desc.get.call(arguments.length < 3 ? target : receiver);
186 }
187 return desc.value;
188 };
189 }
190 return _get.apply(this, arguments);
191 }
192 function _unsupportedIterableToArray(o, minLen) {
193 if (!o) return;
194 if (typeof o === "string") return _arrayLikeToArray(o, minLen);

Callers 1

socket.io.jsFile · 0.85

Calls 2

_superPropBaseFunction · 0.85
bindMethod · 0.80

Tested by

no test coverage detected