mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-10 16:18:32 -05:00
232 B
232 B
Object.clear (ext/object/clear)
Deletes all own, enumerable, non-symbol properties in the object
const clear = require("ext/object/clear");
const obj = { foo: "bar" };
clear(obj);
Object.keys(obj); // []