
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Convert a multi line string into a single line string - great for classnames and more
Install the dependency
npm install singleline --save-dev
import singleline from 'singleline';
...
<div
className={singleline(`
rrs__select-container
rrs__select-container--multiselect
${(disabled === true) ? 'rrs__select-container--disabled' : ''}
${(isTouchDevice === true) ? 'rrs__is-touch' : 'rrs__is-desktop'}
${(isOptionsPanelOpen === true) ? 'rrs__options-container--visible' : ''}
${altered ? 'rrs__has-changed': ''}
`)}
>
Some output
</div>
// className="rrs__select-container rrs__select-container--multiselect rrs__is-desktop rrs__options-container--visible"
Passing second parameter in as true
, removes spaces around the HTML tags but it still respects the spaces in the contents of the tags and attributes.
import singleline from 'singleline';
var testMultilineHTMLString = singleline(`
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GDD - Giphy Github embed Gif code explorer</title>
<link href="css/styleguide.css" rel="stylesheet">
</head>
<body>
<div id="root" class="root"></div>
<script src="app.js"></script>
</body>
</html>
`, true);
console.log(testMultilineHTMLString);
// '<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1"><title>GDD - Giphy Github embed Gif code explorer</title><link href="css/styleguide.css" rel="stylesheet"></head><body><div id="root" class="root"></div><script src="app.js"></script></body></html>'
FAQs
Convert a multi line string into a single line string - great for classnames and more
The npm package singleline receives a total of 3,005 weekly downloads. As such, singleline popularity was classified as popular.
We found that singleline demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.