farm-life

0.0.4 • Public • Published

farm-life

Prepend/append string X (or ensure string X is prepended/appended) to each occurrence of string Y in string Z

Build Status Coverage Status npm version JavaScript Style Guide

Install

$ npm install --save farm-life

Not using Node or a module bundler? Use a UMD build via the <script> tag.

Usage

import {
  append,
  prepend,
  ensureAppended,
  ensurePrepended
} from 'farm-life'
 
const haystack = '[]-$$the gr$$[]-eat gat$sby $$[]'
const needle = '$$'
const attachment = '[]-'
 
append(haystack, needle, attachment)  // '[]-$$[]-the gr$$[]-[]-eat gat$sby $$[]-[]'
ensureAppended(haystack, needle, attachment) // '[]-$$[]-the gr$$[]-eat gat$sby $$[]-[]'
 
prepend(haystack, needle, attachment)  // []-[]-$$the gr[]-$$[]-eat gat$sby []-$$[]
ensurePrepended(haystack, needle, attachment)  // '[]-$$the gr[]-$$[]-eat gat$sby []-$$[]'

Package Sidebar

Install

npm i farm-life

Weekly Downloads

1

Version

0.0.4

License

MIT

Last publish

Collaborators

  • danne931