projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
211c3b8164dd0a73c0445d63d4f61dfbfa6de511
[platform/framework/web/crosswalk-tizen.git]
/
1
var test = require('tape');
2
var escape = require('./index');
3
test("Characters should be escaped properly", function (t) {
4
t.plan(1);
5
6
t.equals(escape('" \' < > &'), '" ' < > &');
7
})