As of Moment 2.3.0 ISO 8601 durations are supported without the need for this plugin. http://momentjs.com/docs/#/durations/creating/
moment.duration('P1Y2M3DT4H5M6S');
moment.duration('P1M');
Moment.js durations using ISO 8601
var duration = moment.duration.fromIsoduration('P3Y6M7W4DT12H30M5S');
var duration = moment.duration({
years: 1,
days: 2,
minutes: 61
});
duration.isoduration(); // "P1Y2DT1H1M"