A JavaScript implement of NotificationQueue and NotificationCenter.
Installation
npm install notification-queue
Usage
NotificationCenter
; ;; center.post'update', null, 'Hello world!'; // Output "Update: Hello world!". center.removeObservertoken;
NotificationQueue
; ;; ; queue.enqueueNotification.init'update', null, 'X', PostingStyle.asap;queue.enqueueNotification.init'update', null, 'Y', PostingStyle.asap; // Output "X".
API
See documents