Spin's a set of nested strings into plain text. Example: {hello {bob|alice}}
returns hello bob
or hello alice
$ npm install nested-text-spinner
$ npm test
const spinner = require('nested-text-spinner');
let text = '{hello {bob|alice}}';
let plain = spinner.spin(text);
console.log(plain);
//result: hello bob (or) hello alice