chore: update project state and prepare for image support development
- Add comprehensive image test document with various image types - Update project structure with development artifacts - Prepare foundation for image support enhancement phase - Include test files for validating image editing workflows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
ff6b807f3b
commit
d0abaab63a
2730 changed files with 218268 additions and 174 deletions
23
node_modules/html-escaper/test/index.js
generated
vendored
Normal file
23
node_modules/html-escaper/test/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
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'
|
||||
);
|
||||
1
node_modules/html-escaper/test/package.json
generated
vendored
Normal file
1
node_modules/html-escaper/test/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"type":"commonjs"}
|
||||
Loading…
Add table
Add a link
Reference in a new issue