1.1.2 • Published 8 years ago

hugg v1.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

hugg Build Status npm version

Append strings on both sides of deeply nested strings

Install

npm install --save hugg

Usage

const hugg = require('hugg');

hugg(['word1', 'word2'], '$');
//=> ['$word1$', '$word2$']

hugg('secondWord', '<br>');
//=> '<br>secondWord<br>'

API

hugg(target, pattern)

target

Type: Anything

pattern

Type: string

Appends pattern on each side of target. Target can be of any data type - although changes will only happen if it contains a nested string as described in deep-blue-string. Hugg will iterate into deeply nested strings in order to alter all occurences of the target

Related

License

MIT © dawsonbotsford