# util-extend **Repository Path**: mirrors_isaacs/util-extend ## Basic Information - **Project Name**: util-extend - **Description**: Node's internal object extension function, for you! - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-04-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # util-extend The Node object extending function that Node uses for Node! ## Usage ```js var extend = require('util-extend'); function functionThatTakesOptions(options) { var options = extend(defaults, options); // now any unset options are set to the defaults. } ```