Socket
Socket
Sign inDemoInstall

underscore.template

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    underscore.template

Extracted template from Underscore, use '_.template' without full underscore source.


Version published
Weekly downloads
2.2K
decreased by-11.7%
Maintainers
1
Install size
17.1 kB
Created
Weekly downloads
 

Readme

Source

underscore.template

Extracted template from Underscore, use _.template without full underscore source.

NPM version Downloads Bower version Build Status

underscore.template

Installation

NPM

npm install underscore.template

Bower

bower install underscore.template

Usage

Node.js

var UnderscoreTemplate = require('underscore.template');
var template = UnderscoreTemplate("<b><%- value %></b>");

template({value: 'hello world'});
// <b>hello world</b>

template({value: '<script>'});
// <b>&lt;script&gt;</b>

Browser

Simply download the latest minified version from the dist/ folder. API is available in a global object called UnderscoreTemplate.

<script src="./dist/underscore.template.js"></script>
var template = UnderscoreTemplate("<b><%- value %></b>");

template({value: 'hello world'});
// <b>hello world</b>

Testing

npm test

License

MIT, see the LICENSE file for detail.

Keywords

FAQs

Last updated on 22 Dec 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc