(key)
| 144 | ); |
| 145 | } |
| 146 | function escape(key) { |
| 147 | var escaperLookup = { "=": "=0", ":": "=2" }; |
| 148 | return ( |
| 149 | "$" + |
| 150 | key.replace(/[=:]/g, function (match) { |
| 151 | return escaperLookup[match]; |
| 152 | }) |
| 153 | ); |
| 154 | } |
| 155 | var userProvidedKeyEscapeRegex = /\/+/g; |
| 156 | function getElementKey(element, index) { |
| 157 | return "object" === typeof element && null !== element && null != element.key |
no outgoing calls
no test coverage detected
searching dependent graphs…