You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

one-liner

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

one-liner

Transform a string to a one line string by converting and merging line breaks/carriages, tabs, spaces

1.3.0
latest
Source
npmnpm
Version published
Weekly downloads
1.3K
9.45%
Maintainers
1
Weekly downloads
 
Created
Source

one-liner Build Status

Transform a string to a one line string by converting and merging line breaks/carriages, tabs, spaces.

Why

If you want to display some strings in the console that could have potentially have spaces, line breaks etc. that are not really important.

Install

$ npm install --save one-liner

Usage

var oneliner = require('oneliner')

var oneline = oneliner(`Hey !
  This is my text file
  with a lot of blabla and some code:
    function t(a, b) {
      return a + b;
    }`)

console.log(oneline)
// Hey ! This is my text file with a lot of blabla and some code: function t(a, b) { return a + b; }

It also support template literals:

oneliner`This is amazing.
         It truly is phenomenal
         based on what they say`

It replaces and collapses \t\r\n and spaces.

Keywords

string

FAQs

Package last updated on 15 Feb 2018

Did you know?

Socket

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.

Install

Related posts