jsonresume / theme-utils

Utility methods for theme developers
20 stars 6 forks source link

Deprecation warning for moment construction #6

Closed stieben closed 8 years ago

stieben commented 8 years ago

Line 7 in common.js results in a deprecation warning; see moment/moment#1407. I suggest changing the line from

return moment(date).format(date_format);

to

return moment(date, date_format);

If approved I can open a PR to fix this.

mudassir0909 commented 8 years ago

I'll be happy to merge the PR :)