* Creates a new object without a prototype. This object is useful for lookup without having to * guard against prototypically inherited properties via hasOwnProperty. * * Related micro-benchmarks: * - http://jsperf.com/object-create2 * - http://jsperf.com/proto-map-lookup/2 * - http://jsperf.c
()
| 1648 | * @returns {Object} |
| 1649 | */ |
| 1650 | function createMap() { |
| 1651 | return Object.create(null); |
| 1652 | } |
| 1653 | |
| 1654 | var NODE_TYPE_ELEMENT = 1; |
| 1655 | var NODE_TYPE_TEXT = 3; |
no outgoing calls
no test coverage detected