From: Mark Wooding Date: Sat, 30 Jun 2018 21:53:09 +0000 (+0100) Subject: dep.js: Report out-of-date deps as being `stale'. X-Git-Url: https://git.distorted.org.uk/~mdw/dep-ui/commitdiff_plain/b51588fd225f93d51b2277ac82269dab2ce93922?ds=sidebyside dep.js: Report out-of-date deps as being `stale'. It's just shorter. --- diff --git a/dep.js b/dep.js index ec09e83..50a4fed 100644 --- a/dep.js +++ b/dep.js @@ -235,7 +235,7 @@ Dep.prototype = { s += ' #' + this._seq; // The value, or some kind of marker that it doesn't have one. - if (!(f & F_VALUE)) s += ' #{out-of-date}'; + if (!(f & F_VALUE)) s += ' #{stale}'; else if (v === BAD) s += ' #{bad}'; else s += ' ' + v.toString();