aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/expand-template/README.md
diff options
context:
space:
mode:
authorpack <pack@packgekko.xyz>2026-08-09 10:54:08 +0000
committerpack <pack@packgekko.xyz>2026-08-09 10:54:08 +0000
commitd3adc16a08d95d6e331de55d7d3bf05a66a874a8 (patch)
treea2dabd199501e67c547c2ce79e1374ca3aa55443 /node_modules/expand-template/README.md
parent55a4f1fc869e41aca748c63d3018f0448b1606e0 (diff)
downloadcrud-d3adc16a08d95d6e331de55d7d3bf05a66a874a8.tar.gz
stop tracking node_modules/
Diffstat (limited to '')
-rw-r--r--node_modules/expand-template/README.md43
1 files changed, 0 insertions, 43 deletions
diff --git a/node_modules/expand-template/README.md b/node_modules/expand-template/README.md
deleted file mode 100644
index b98aa48..0000000
--- a/node_modules/expand-template/README.md
+++ /dev/null
@@ -1,43 +0,0 @@
-# expand-template
-
-> Expand placeholders in a template string.
-
-[![npm](https://img.shields.io/npm/v/expand-template.svg)](https://www.npmjs.com/package/expand-template)
-![Node version](https://img.shields.io/node/v/expand-template.svg)
-[![Build Status](https://travis-ci.org/ralphtheninja/expand-template.svg?branch=master)](https://travis-ci.org/ralphtheninja/expand-template)
-[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
-
-## Install
-
-```
-$ npm i expand-template -S
-```
-
-## Usage
-
-Default functionality expands templates using `{}` as separators for string placeholders.
-
-```js
-var expand = require('expand-template')()
-var template = '{foo}/{foo}/{bar}/{bar}'
-console.log(expand(template, {
- foo: 'BAR',
- bar: 'FOO'
-}))
-// -> BAR/BAR/FOO/FOO
-```
-
-Custom separators:
-
-```js
-var expand = require('expand-template')({ sep: '[]' })
-var template = '[foo]/[foo]/[bar]/[bar]'
-console.log(expand(template, {
- foo: 'BAR',
- bar: 'FOO'
-}))
-// -> BAR/BAR/FOO/FOO
-```
-
-## License
-All code, unless stated otherwise, is dual-licensed under [`WTFPL`](http://www.wtfpl.net/txt/copying/) and [`MIT`](https://opensource.org/licenses/MIT).