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>
8 lines
473 B
JavaScript
8 lines
473 B
JavaScript
var arrayWithHoles = require("./arrayWithHoles.js");
|
|
var iterableToArray = require("./iterableToArray.js");
|
|
var unsupportedIterableToArray = require("./unsupportedIterableToArray.js");
|
|
var nonIterableRest = require("./nonIterableRest.js");
|
|
function _toArray(r) {
|
|
return arrayWithHoles(r) || iterableToArray(r) || unsupportedIterableToArray(r) || nonIterableRest();
|
|
}
|
|
module.exports = _toArray, module.exports.__esModule = true, module.exports["default"] = module.exports; |