flow like the river

This commit is contained in:
root 2025-11-07 00:06:12 +01:00
commit 013fe673f3
42435 changed files with 5764238 additions and 0 deletions

3
BACK_BACK/node_modules/mdn-data/api/index.js generated vendored Executable file
View file

@ -0,0 +1,3 @@
module.exports = {
inheritance: require('./inheritance'),
}

2650
BACK_BACK/node_modules/mdn-data/api/inheritance.json generated vendored Executable file

File diff suppressed because it is too large Load diff

31
BACK_BACK/node_modules/mdn-data/api/inheritance.schema.json generated vendored Executable file
View file

@ -0,0 +1,31 @@
{
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"inherits": {
"oneOf": [
{
"type": "null"
},
{
"type": "string",
"minLength": 1
}
]
},
"implements": {
"minItems": 0,
"uniqueItems": true,
"items": {
"type": "string"
}
}
},
"required": [
"inherits",
"implements"
]
}
}