gui/ui/node_modules.bak/ent/test/num.js
Snider fad16c8c76
Some checks failed
Security Scan / security (push) Failing after 34s
Test / test (push) Failing after 1m44s
chore: sync workspace dependencies
Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-15 15:44:56 +00:00

15 lines
337 B
JavaScript

'use strict';
var test = require('tape');
var ent = require('../');
test('opts.numeric', function (t) {
var a = 'a & b & c';
var ax = 'a &#38; b &#38; c';
var b = '<html> © π " \'';
var bx = '&#60;html&#62; &#169; &#960; &#34; &#39;';
t.equal(ent.encode(a), ax);
t.equal(ent.encode(b), bx);
t.end();
});