tagged-template-literals

1.0.1 • Public • Published

Tagged Template Literals

Tagged Template Literals is a base library to make your packages simpler. See the usage for example usage.

Installation

npm install --save tagged-template-literals

API

function taggedTemplateLiterals(
  values: Array<string>,
  strings: Array<string>,
  callback: ?((param: string) => string)
): string
 
module.exports = taggedTemplateLiterals

Examples

import tag from 'tagged-template-literals'
import escape from 'escape-html'
import trim from 'cool-trim'
 
function escapeHTML(strings, ...values) {
  if (strings && strings.raw) {
    throw new Error('Only template strings are supported')
  }
  return tag(strings, values, escape)
}
 
const dangerous = '<script></script>'
const escaped = trim(escapeHTML`
  Hello there <div>
    ${dangerous}
  </div>
`)
console.log(escaped === `
Hello there <div>
  &lt;script&gt;&lt;/script&gt;
</div>
`) // true

License

This project is licensed under the terms of MIT License, see the LICENSE file for more info

Readme

Keywords

Package Sidebar

Install

npm i tagged-template-literals

Weekly Downloads

3

Version

1.0.1

License

MIT

Last publish

Collaborators

  • steelbrain