# format-object **Repository Path**: mirrors_vadimdemedes/format-object ## Basic Information - **Project Name**: format-object - **Description**: util.format with object instead of argument list - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-09-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # format-object [![Build Status](https://travis-ci.org/vadimdemedes/format-object.svg?branch=master)](https://travis-ci.org/vadimdemedes/format-object) > `util.format` with object instead of argument list. ## Installation ``` $ npm install --save format-object ``` ## Usage ```js const format = require('format-object'); format('Hello, :name', {name: 'Joe'}); // => 'Hello, Joe' ``` ## API ### formatObject(input, params) #### input Type: `string` Input string. #### params Type: `object` Object of params to replace. ## License MIT © [Vadim Demedes](https://vadimdemedes.com)