0.0.1 • Published 10 years ago
removetags v0.0.1
Escape Square Brackets
Escapes square brackets in a string, useful for queries and other such things.
Install
$ npm install removetagsUsage
removetags(string)In JS
var removetags = require('removetags');
input = "hello <em>world</em>, how are you?";
input = removetags(input);Output
hello world, how are you?0.0.1
10 years ago