Interactive Angular 19 demo for @sda/notification-elements-ui with 6 sections: Bell & Feed, Notification Center, Inbox, Comments & Threads, Mention Input, and Full-Featured layout. Includes mock data, dark mode toggle, and real-time event log. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
451 B
JavaScript
27 lines
451 B
JavaScript
var test = require('tape');
|
|
var Parser = require('../');
|
|
|
|
test('parse surrogate pair', function (t) {
|
|
t.plan(1);
|
|
|
|
var p = new Parser();
|
|
p.onValue = function (value) {
|
|
t.equal(value, '😋');
|
|
};
|
|
|
|
p.write('"\\uD83D\\uDE0B"');
|
|
});
|
|
|
|
test('parse chunked surrogate pair', function (t) {
|
|
t.plan(1);
|
|
|
|
var p = new Parser();
|
|
p.onValue = function (value) {
|
|
t.equal(value, '😋');
|
|
};
|
|
|
|
p.write('"\\uD83D');
|
|
p.write('\\uDE0B"');
|
|
});
|
|
|