Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
459 B
Text
23 lines
459 B
Text
delete Object.freeze;
|
|
|
|
var html = require('../cjs');
|
|
|
|
console.assert(
|
|
html.escape('&<>\'"') === '&<>'"',
|
|
'correct escape'
|
|
);
|
|
|
|
console.assert(
|
|
html.escape('<>\'"&') === '<>'"&',
|
|
'correct inverted escape'
|
|
);
|
|
|
|
console.assert(
|
|
'&<>\'"' === html.unescape('&<>'"'),
|
|
'correct unescape'
|
|
);
|
|
|
|
console.assert(
|
|
'<>\'"&' === html.unescape('<>'"&'),
|
|
'correct inverted unescape'
|
|
);
|