Skip to content

Commit

Permalink
[misc] Update dep message to reflect project status (moment#5737)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiculescu authored Sep 30, 2020
1 parent adfaae8 commit 116752c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib/create/from-string.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,7 @@ export function configFromString(config) {
hooks.createFromInputFallback = deprecate(
'value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' +
'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' +
'discouraged and will be removed in an upcoming major release. Please refer to ' +
'http://momentjs.com/guides/#/warnings/js-date/ for more info.',
'discouraged. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.',
function (config) {
config._d = new Date(config._i + (config._useUTC ? ' UTC' : ''));
}
Expand Down

0 comments on commit 116752c

Please sign in to comment.