(no title)
jeffmcmahan | 3 years ago
> { packageMgr } install { randomPkg }
Developer Andy, author of { randomPkg }, does the same thing. And so on, ad infinitum. You want to sum two numbers? > npm install node-plus
And the source code will be: import { readFile } from 'node:fs/promise'
import { dirname, join } from 'node:path'
import additionChecker from 'add-check'
// redundant useless comments
return function(n1, n2) {
// redundant useless comments
n1 + n2
}
ChadNauseam|3 years ago
llanowarelves|3 years ago
In these cases it's not a matter of not understanding the low level internals.
Dylan16807|3 years ago
jeffmcmahan|3 years ago
userbinator|3 years ago
kajaktum|3 years ago
jeffmcmahan|3 years ago
Tomis02|3 years ago