bug-groff
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug #60602] Unit discrepancy in \r, \u, and \d between Texinfo manual a


From: John Gardner
Subject: [bug #60602] Unit discrepancy in \r, \u, and \d between Texinfo manual and groff(7)
Date: Tue, 16 Nov 2021 01:13:34 -0500 (EST)
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:94.0) Gecko/20100101 Firefox/94.0

Follow-up Comment #8, bug #60602 (project groff):

> Excellent!  Except...maybe my JS environment is too old? 

`Array.prototype.flat` was only added to the ECMAScript spec in 2019, so it's
possible your version of Node.js is outdated. If your distro's lagging behind
(i.e., upgrading doesn't help), you can add this to the top of the script to
polyfill the missing method:


if("function" !== typeof [].flat)
        Array.prototype.flat = function(depth = 1){
                const {forEach} = this;
                const results = [];
                const fn = (obj, depth) =>
                        forEach.call(obj, x => depth > 0 && Array.isArray(x)
                                ? fn(x, depth - 1)
                                : results.push(x));
                fn(this, depth);
                return results;
        };


> but you might try the archives of the TUHS list.

Thanks! I'll have a poke around.

    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?60602>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]