reset
Reset all keys to their default value and clear their caches.
globals.setKeyValue(key, value)
globals.define('foo', 'bar');
globals.setKeyValue('foo', 'baz');
globals.getKeyValue('foo'); //-> 'baz'
globals.reset();
globals.getKeyValue('foo'); //-> 'bar'