Writer.js: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

    27 March 2025

    • curprev 12:0612:06, 27 March 2025Wordfa talk contribs 3,182 bytes +3,182 Created page with "<syntaxhighlight lang="js"> const fs = require("node:fs"); var exec = require("child_process").exec; console.log("Writing some Dot Dot"); // Check to see if the -f argument is present const strict = process.argv.indexOf("-s") > -1 ? true : false; // Checks for --custom and if it has a value const artistIndex = process.argv.indexOf("-a"); let artistValue; var args = process.argv.slice(2); console.log(args) if (artistIndex > -1) { // Retrieve the value after --cu..." Tag: Visual edit