mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 13:24:05 -06: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); // []