Skip to content

Commit

Permalink
Add date to the list of properties for Item
Browse files Browse the repository at this point in the history
  • Loading branch information
jhurliman committed Feb 9, 2013
1 parent d973a79 commit 9cdf50c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion m3u/Item.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ var Item = module.exports = function Item(attributes) {
this.attributes = new AttributeList(attributes);
this.properties = {
byteRange : null,
date : null,
discontinuity : null,
duration : null,
title : null,
Expand Down Expand Up @@ -52,4 +53,4 @@ Item.prototype.setData = function setData(data) {

Item.prototype.propertiesHasKey = function hasKey(key) {
return Object.keys(this.properties).indexOf(key) > -1;
};
};

0 comments on commit 9cdf50c

Please sign in to comment.