Socket
Socket
Sign inDemoInstall

word-replace

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    word-replace

Pyhton has a format method on string object, which is very handy, when it comes to string manipulation. Javascript has no such method. If we have to deal with any string manipulation we have the ugly way of doing it - concatination.


Version published
Weekly downloads
4
Maintainers
1
Install size
3.35 kB
Created
Weekly downloads
 

Readme

Source

word-replace

Pyhton has a format method on string object, which is very handy, when it comes to string manipulation. Javascript has no such method. If we have to deal with any string manipulation we have the ugly way of doing it - concatination. word-replace.js is inspired from Python's format method on string object.

Installation

  1. Get word-replace in one of the following ways:
  • Download word-replace.js and place the file in your working folder.
  • Bower
    • bower install word-replace
  • NPM
    • npm install word-replace
  • CDN
    • http://cdn.abhishekprakash.com/word-replace/replace-word.js
  1. Include word-replace.js in your script tag.

<script src="path/to/replace-word.js"></script>

Usage

var formattedString = "hi $0 $1 $2 $3.".format(["pk", "bk", "ck", "dk"]); // hi pk bk ck dk.

For Nodejs

require('word-replace')();

Keywords

FAQs

Last updated on 09 Sep 2015

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