{%= description %}
{%= include("install-npm", {save: true}) %}
var expand = require('{%= name %}');
Pass an array or list of strings:
expand('{foo,bar}', '{baz,quux}');
// or
expand(['{foo,bar}', '{baz,quux}']);
// both yield => [ 'foo', 'bar', 'baz', 'quux' ];
Pass a function as the last argument to customize output:
expand(['{a..e}', '{f..h}'], function (str) {
return '_' + str;
});
//=> ['_a', '_b', '_c', '_d', '_e', '_f', '_g', '_h']
{%= related(verb.related.list) %}
{%= include("tests") %}
{%= include("contributing") %}
{%= include("author") %}
{%= copyright() %} {%= license() %}
{%= include("footer") %}