* 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
()
| 2182 | * @returns {Object} |
| 2183 | */ |
| 2184 | function createMap() { |
| 2185 | return Object.create(null); |
| 2186 | } |
| 2187 | |
| 2188 | function stringify(value) { |
| 2189 | if (value == null) { // null || undefined |
no outgoing calls
no test coverage detected