New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

dust-helper-intl

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dust-helper-intl

dust helpers for internationalization

  • 0.0.1
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-71.43%
Maintainers
1
Weekly downloads
 
Created
Source

dust-helper-intl

Dust helpers for internationalization.

Build Status

Installation

Browser

  1. Install with bower: bower install dust-helper-intl

  2. Load the scripts into your page. (It does not matter which order the scripts are loaded in.)

    <script src="dustjs-linkedin.js"></script>
    <script src="dust-helper-intl.js"></script>
    
  3. Register the helpers:

    DustHelperIntl.register(dust);
    

Node/CommonJS

  1. You can install the helpers with npm: npm install dust-helper-intl

  2. Load in the module and register it:

    var Dust = require('dustjs-linkedin');
    global.Intl = require('intl');
    require('dust-helper-intl').register(Dust);
    

    NOTE: Since node (as of 0.10) doesn't provide the global Intl object (ECMA-402) you'll need to provide a polyfill. The intl NPM package can provide this or you can use another.

AMD

  1. Install with bower: bower install dust-form-helpers

  2. Load in the module and register it:

    define(['dust', 'dust-helper-intl'], function(Dust, DustHelperIntl) {
        DustHelperIntl.register(Dust);
    });
    

Usage

TODO

Keywords

FAQs

Package last updated on 13 Feb 2014

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