文件名称:escape-html-in-json:在 JSON.stringify 中转义 HTML 实体
文件大小:4KB
文件格式:ZIP
更新时间:2024-06-29 09:01:39
JavaScript
转义 html-in-json 使用JSON.stringify方法在JSON.stringify转义 HTML 实体。 npm install escape-html-in-json > var escape_html_entities = require ( 'escape-html-in-json' ) > var object = { name : "[removed]alert('hacked');[removed]" } > JSON . stringify ( object ) '{"name":"[removed]alert(\'hacked\');[removed]"}' > JSON . stringify ( object , escape_html_entities ) '{"name":"[removed]alert('hacked')
【文件预览】:
escape-html-in-json-master
----.gitignore(526B)
----package.json(839B)
----LICENSE(1KB)
----index.js(757B)
----CHANGELOG.md(24B)
----README.md(577B)
----.npmignore(7B)
----test()
--------escape-html-in-json.test.coffee(561B)