Package Exports
- qw
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (qw) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
qw
Quoted word literals!
const qw = require('qw')
const myword = qw` this is
a long list
of words`
// equiv of:
const myword = [ 'this', 'is', 'a', 'long', 'list', 'of', 'words' ]
You can embed vars in the usual way:
const mywords = qw`product ${23 * 5} also ${'escaping a string'}`
// equiv of:
const mywords = [ 'product', 23 * 5, 'also', 'escaping a string' ]
You can also embed vars inside strings:
const mywords = qw`product=${23 * 5} also "${'escaping a string'}"`
// equiv of:
const mywords = [ 'product=' + (23 * 5), 'also', '"escaping a string"' ]
DESCRIPTION
This uses template strings to bring over this little common convenience from Perl-land.