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

@dword-design/endent

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dword-design/endent

➡️ An ES6 string tag that makes indentation right

  • 1.4.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Endent stability

npm travis dm js-standard-style

An ES6 string tag that makes indentation right, adds some key features to dedent.

Feature

pretty object

import dedent from "dedent"
import endent from "endent"

var someobj = {
  contact: {
    jack: 123456,
    tom: 654321
  },
  color: "blue"
}

var somejson = '["bear", "fish", "dog", "cat"]'

var awfulTmpl = dedent`
  function store (state, emitter) {
    state["someobj"] = ${JSON.stringify(someobj, null, 2)}
    state["somejson"] = ${JSON.stringify(JSON.parse(somejson), null, 2)}
  }
`
// use endent.pretty(value) when value is object or array.
var prettyTmpl = endent`
  function store (state, emitter) {
    state["someobj"] = ${endent.pretty(someobj)}
    state["somejson"] = ${somejson}
  }
`

console.log(awfulTmpl + "\n\n" + prettyTmpl)
// awfulTmpl
function store (state, emitter) {
  state["someobj"] = {
"contact": {
  "jack": 123456,
  "tom": 654321
},
"color": "blue"
}
  state["somejson"] = [
"bear",
"fish",
"dog"
]
}

// prettyTmpl
function store (state, emitter) {
  state["someobj"] = {
    "contact": {
      "jack": 123456,
      "tom": 654321
    },
    "color": "blue"
  }
  state["somejson"] = [
    "bear",
    "fish",
    "dog",
    "cat"
  ]
}

endows suitable indentation for multiline interpolation

var dependencies = ['jquery', 'underscore', 'bootstrap']
var dependencyTmpl = ``
dependencies.forEach((d, i) => {
  dependencyTmpl += `var ${d} = require("${d}")\n`
})

var awfulTmpl = dedent`
  ;(function () {
    ${dependencyTmpl}
  })()
`

var prettyTmpl = endent`
  ;(function () {
    ${dependencyTmpl}
  })()
`

console.log(awfulTmpl + "\n\n" + prettyTmpl)
// awfulTmpl
;(function () {
  var jquery = require('jquery')
var underscore = require('underscore')
var bootstrap = require('bootstrap')
})()


// prettyTmpl
;(function () {
  var jquery = require('jquery')
  var underscore = require('underscore')
  var bootstrap = require('bootstrap')
})()

License

MIT

Keywords

FAQs

Package last updated on 25 Jul 2022

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