A class-like constructor that creates objects with a null prototype. These objects are truly empty and do not inherit from Object.prototype.
const cache = new NullProtoObj<string[]>();// cache.toString is undefined Copy
const cache = new NullProtoObj<string[]>();// cache.toString is undefined
A class-like constructor that creates objects with a null prototype. These objects are truly empty and do not inherit from Object.prototype.