1.0.1 • Published 7 years ago

escapify v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

escapify Build Status

Escape html strings

Install

$ npm install --save escapify

Usage

const escapify = require('escapify');

escapify.escape('<html string>');
//=> '&lt;html string&gt;'

escapify.unescape('&lt;html string&gt;');
//=> '<html string>'

API

escapify.escape(input)

input

Type: string

unescaped html string

escapify.unescape(input)

input

Type: string

escaped html string

License

MIT © Tobias Herber