Delete a key from a dictionary and return the result (a new dictionary).
var Dictionaries = require('machinepack-dictionaries');
// Delete a key from a dictionary and return the result (a new dictionary).
Dictionaries.deleteKey({
dictionary: {},
key: 'password',
}).execSync();
The dictionary to delete the key from.
{}
The key to delete.
'password'
An unexpected error occurred.
The specified key does not exist.
OK.