Initial commit

This commit is contained in:
Marcelo
2025-11-20 15:27:34 -06:00
commit cc72c9fc5d
3221 changed files with 737477 additions and 0 deletions

24
node_modules/reduce-flatten/package.json generated vendored Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "reduce-flatten",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "1.0.1",
"description": "Flatten an array into the supplied array.",
"repository": "https://github.com/75lb/reduce-flatten.git",
"license": "MIT",
"main": "./lib/reduce-flatten.js",
"keywords": [
"array",
"reduce",
"flatten"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "tape test/*.js",
"docs": "jsdoc2md2 -t jsdoc2md/README.md lib/*.js > README.md; echo"
},
"devDependencies": {
"tape": "^4.5.1"
}
}