0.0.2 • Published 7 years ago

single-line-string v0.0.2

Weekly downloads
340
License
ISC
Repository
github
Last release
7 years ago

Single Line String

Simple tag function that converts a multiline ES6 template literal to a single line string, removing extra whitespace. Requires a javascript environment that supports es6 template literals (eg: Node >= 4.7.0).

Usage

ES6

import sls from 'single-line-string';

var name = 'June';
const hello = sls`
  Hey,
        hello,
  how
    are
              you
  ${name}?
`

console.log(hello); // outputs: "Hey, hello, how are you June?"

or via Common JS

var sls = require('single-line-string');
var name = 'June';
var hello = sls`
  Hey,
        hello,
  how
    are
              you
  ${name}?
`;

console.log(hello); // outputs: "Hey, hello, how are you June?"

Install

npm install single-line-string

Build

npm install && npm run build

Test

npm run test

Credits

code credit: https://muffinresearch.co.uk/removing-leading-whitespace-in-es6-template-strings/