]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
[misc] Update dep message to reflect project status (#5737)
authorAlex Ghiculescu <alex@tanda.co>
Wed, 30 Sep 2020 19:01:14 +0000 (14:01 -0500)
committerGitHub <noreply@github.com>
Wed, 30 Sep 2020 19:01:14 +0000 (12:01 -0700)
src/lib/create/from-string.js

index dd1ff9d9f88f5c643caedacdd86cc1c529fc7ba8..689bc9abd1e2f0fd73a37f6bbe97de10395b3a8c 100644 (file)
@@ -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' : ''));
     }