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>
21 lines
320 B
JavaScript
21 lines
320 B
JavaScript
var isArray = require('./');
|
|
var test = require('tape');
|
|
|
|
test('is array', function(t){
|
|
t.ok(isArray([]));
|
|
t.notOk(isArray({}));
|
|
t.notOk(isArray(null));
|
|
t.notOk(isArray(false));
|
|
|
|
var obj = {};
|
|
obj[0] = true;
|
|
t.notOk(isArray(obj));
|
|
|
|
var arr = [];
|
|
arr.foo = 'bar';
|
|
t.ok(isArray(arr));
|
|
|
|
t.end();
|
|
});
|
|
|