/strip-formatting

Removes leading whitespace from each line of input

Primary LanguageJavaScriptISC LicenseISC

strip-formatting

Build Status js-standard-style npm version Coverage Status

var stripped = stripFormatting(val)

Removes leading whitespace from each line of input

  • val (string) - The string to strip formatting from
const stripFormatting = require('strip-formatting')
stripFormatting(`
<html>
  <head>
    <title>whatever</title>
  </head>
  ...
`)