Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

putil-flattentext

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

putil-flattentext

Simple utility that converts manipulate \t \b \r characters and flattens text

  • 2.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

putil-flattentext

NPM Version NPM Downloads Build Status Test Coverage Dependencies DevDependencies

Simple utility that manipulates \t \b \r characters and converts it to space characters, or ignores them and results single line text. Very useful for pretty printing support.

Installation

  • npm install putil-flattentext --save

Usage

flattentext(str, options)

const flattenText = require('./');
let text =
    'aaa\n'+
    '\tbbb\n'+
    '\t\tccc\n'+
    '\bddd\r'+
    'eee';
console.log(flattenText(text, {
  indent: 2, // default
  noWrap: false, // default
}));

Result output

aaa
  bbb
      ccc
    ddd
eee
const flattenText = require('./');
let text =
    'select \n\t(\n\t'+
    'name,\n'+
    'address\n'+
    '\b) from x \r'+
    'where ...';
console.log(flattenText(text, {
  noWrap: true, // default
}));

Result output

select (name, address) from x where ...

Node Compatibility

  • node >= 6.x;

License

MIT

Keywords

FAQs

Package last updated on 09 Jan 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc