🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

word-replace

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

word-replace - npm Package Compare versions

Comparing version

to
0.0.2

2

package.json
{
"name": "word-replace",
"version": "0.0.1",
"version": "0.0.2",
"description": "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.",

@@ -5,0 +5,0 @@ "main": "replace-word.js",

@@ -10,7 +10,9 @@ # word-replace

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

@@ -26,1 +28,6 @@ 2. Include word-replace.js in your script tag.

var formattedString = "hi $0 $1 $2 $3.".format(["pk", "bk", "ck", "dk"]); // hi pk bk ck dk.
For Nodejs
----------
``` require('word-replace')(); ```