* Removes the specified property. Returns the promise that's resolved when * the operation completes. * @param {string} name * @return {!Promise}
(name)
| 103 | * @return {!Promise} |
| 104 | */ |
| 105 | remove(name) { |
| 106 | return this.saveStore_((store) => store.remove(name)); |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * Returns if this.binding is an instance of ViewerStorageBinding |
nothing calls this directly
no test coverage detected