module.exports = function unmarshalNotification (header) {
var notificationType = header[0]
if (typeof notificationType !== 'string') throw new Error('Invalid NOTIFICATION message header (notificationType).')
return {notificationType: notificationType}
}