Dia antes primera install

This commit is contained in:
2025-12-08 15:20:28 -06:00
commit 1416478c9c
4130 changed files with 886376 additions and 0 deletions

23
node_modules/split-skip/package.json generated vendored Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "split-skip",
"version": "0.0.2",
"description": "Splits a String into an Array of substrings with the option to skip some cases where the separator is found, based on some truthy condition.",
"main": "lib/split-skip.js",
"author": {
"name": "Diego ZoracKy",
"email": "diego.zoracky@gmail.com",
"url": "https://github.com/DiegoZoracKy/"
},
"scripts": {
"test": "mocha ./test/main.test.js"
},
"keywords": [
"split",
"skip"
],
"license": "MIT",
"devDependencies": {
"chai": "^4.0.0",
"mocha": "^3.4.2"
}
}