How to use the deleteValue function from bindings

Find comprehensive JavaScript bindings.deleteValue code examples handpicked from public code repositorys.

206
207
208
209
210
211
212
213
214
215
}

export function deleteValue(hkey: HKEY, valueName: string): boolean {
  assert(isHKEY(hkey));
  assert(typeof valueName === 'string');
  return native.deleteValue(hkey, valueName);
}

export function closeKey(hkey: HKEY | null | undefined): void {
  if (hkey == null) return; // nicely handle uninitialized
fork icon7
star icon0
watch icon3

Other functions in bindings

Sorted by popularity

function icon

bindings.createKey is the most popular function in bindings (8616 examples)