Robert G. Schaffrath

Results 9 comments of Robert G. Schaffrath

This is something I was looking for too and it was rather trivial to add to the module and option called "trimstart" after the "options.trim" check: ``` if (options.trimstart ===...

I found this request while trying to figure out how to mark a file read-only in the editor. I had two files open, one for reference and one that I...

Just an FYI: Node.js v16.19.0 dropped last week on the 14th but not yet available here. Maybe the problem is solved in this latest release.

> @marcossv9 @Whobeu you can use ubuntu-20.04 with node 16.19.0 I think some of those vulns are directly related to the OS version, Also I think there might be some...

Unfortunately, chartjs-plugin-datalabels does not play nice in a dual CommonJS/ESM environment using Node.js. I was having a bear of a time trying to get labels to work properly with ESM...

I am still using CommonJS and was able to upgrade to Chart.js 4.2.0 successfully. I do not have an overly complicated project and the only breaking change I ran into...

At the root of my project I did (at the time) npm install ***@***.*** The current version is now 4.3.0 so would replace 4.2.0 with 4.3.0. I am not sure...

> `chartjs-node-canvas` doesn't support `chart.js@4`. However, you can simply use the `canvas` library instead. Here is an example for your reference. > > Filename: make-image.js > > ```js > const...

> > The code has to be changed from > > ```js > > const chartJs = require('chart.js'); > > ``` > > > > > > > > >...