MCPcopy Create free account
hub / github.com/HtmlUnit/htmlunit / Type

Function Type

src/test/resources/libraries/bird/prototype.js:180–192  ·  view source on GitHub ↗
(o)

Source from the content-addressed store, hash-verified

178 typeof JSON.stringify(Prototype.K) === 'undefined';
179
180 function Type(o) {
181 switch(o) {
182 case null: return NULL_TYPE;
183 case (void 0): return UNDEFINED_TYPE;
184 }
185 var type = typeof o;
186 switch(type) {
187 case 'boolean': return BOOLEAN_TYPE;
188 case 'number': return NUMBER_TYPE;
189 case 'string': return STRING_TYPE;
190 }
191 return OBJECT_TYPE;
192 }
193
194 function extend(destination, source) {
195 for (var property in source)

Callers 2

StrFunction · 0.70
keysFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…