UNPKG

@newrelic/gatsby-theme-newrelic

Version:

[![Community Project header](https://github.com/newrelic/opensource-website/raw/master/src/images/categories/Community_Project.png)](https://opensource.newrelic.com/oss-category/#community-project)

12 lines (10 loc) 273 B
/** * Take a multiline command and combine it into one line, stripping comments. */ const collapseLine = (line) => { return line .filter((token) => !token.types.includes('comment')) .map((token) => token.content) .join(''); }; export default collapseLine;