* Saves the value of the specified property. Returns the promise that's * resolved when the operation completes. * Note: More restrict privacy review is required to store non boolean value. * @param {string} name * @param {*} value * @param {boolean=} opt_isUpdate * @return {!Promi
(name, value, opt_isUpdate)
| 93 | * @return {!Promise} |
| 94 | */ |
| 95 | setNonBoolean(name, value, opt_isUpdate) { |
| 96 | return this.saveStore_((store) => store.set(name, value, opt_isUpdate)); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Removes the specified property. Returns the promise that's resolved when |
no test coverage detected