# string-format-obj **Repository Path**: mirrors_stephenplusplus/string-format-obj ## Basic Information - **Project Name**: string-format-obj - **Description**: Replace tokens from a string with values of an object - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-04-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # string-format-obj > Replace tokens from a string with values of an object. ```sh $ npm install --save string-format-obj ``` ```js var format = require('string-format-obj'); format('{greeting} {thing}!', { greeting: 'Hello', thing: 'world' }); // Hello world! ``` If you want to cache the string ```js var formatFunc = format('{greeting} {thing}!'); formatFunc({ greeting: 'Howdy', thing: 'doody' }); // Howdy doody! ```