UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

14 lines (13 loc) 218 B
//#region src/compat/util/stubObject.ts /** * Returns an empty object. * * @returns An empty object. * @example * stubObject() // Returns {} */ function stubObject() { return {}; } //#endregion export { stubObject };