mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
337 B
15 lines
337 B
10 years ago
|
xml-escape
|
||
|
==========
|
||
|
|
||
|
Escape XML in javascript (NodeJS)
|
||
|
|
||
|
|
||
|
npm install xml-escape
|
||
|
|
||
|
// Warning escape is a reserved word, so maybe best to use xmlescape for var name
|
||
|
var xmlescape = require('xml-escape');
|
||
|
|
||
|
xmlescape('"hello" \'world\' & false < true > -1')
|
||
|
|
||
|
// output
|
||
|
// '"hello" 'world' & true < false > -1'
|