(key: string)
| 46 | } |
| 47 | |
| 48 | encodeKey(key: string): string { |
| 49 | // Prepend a $ to avoid reserved keys like "constructor". |
| 50 | return _keyPrefix + key; |
| 51 | } |
| 52 | |
| 53 | decodeKey(key: string): string { |
| 54 | return key.substr(_keyPrefix.length); |
no outgoing calls
no test coverage detected