# otfs **Repository Path**: mirrors_flauc/otfs ## Basic Information - **Project Name**: otfs - **Description**: A simple npm library that creates nicely formatted template strings from objects. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # OTFS A light weight npm library for converting objects in to properly indented ES6 template strings. ## Install ```cmd npm install otfs ``` ## Usage otfs has a single method called create which accepts an object and returns a template string. ```js const otfs = require("otfs"); let something = { a: "something", b: "something else", c: { d: "this also works", e: ["and this", "and this", "and this"] } }; otfs.create(something) ``` ## Example For a simple example clone this repository and check out the example folder.