Dockerfile actualizado con express js

This commit is contained in:
2024-10-17 17:10:54 +02:00
parent a860c95658
commit 2c4a0ec203
522 changed files with 65084 additions and 4 deletions

23
node_modules/object-inspect/example/all.js generated vendored Normal file
View File

@ -0,0 +1,23 @@
'use strict';
var inspect = require('../');
var Buffer = require('safer-buffer').Buffer;
var holes = ['a', 'b'];
holes[4] = 'e';
holes[6] = 'g';
var obj = {
a: 1,
b: [3, 4, undefined, null],
c: undefined,
d: null,
e: {
regex: /^x/i,
buf: Buffer.from('abc'),
holes: holes
},
now: new Date()
};
obj.self = obj;
console.log(inspect(obj));

6
node_modules/object-inspect/example/circular.js generated vendored Normal file
View File

@ -0,0 +1,6 @@
'use strict';
var inspect = require('../');
var obj = { a: 1, b: [3, 4] };
obj.c = obj;
console.log(inspect(obj));

5
node_modules/object-inspect/example/fn.js generated vendored Normal file
View File

@ -0,0 +1,5 @@
'use strict';
var inspect = require('../');
var obj = [1, 2, function f(n) { return n + 5; }, 4];
console.log(inspect(obj));

10
node_modules/object-inspect/example/inspect.js generated vendored Normal file
View File

@ -0,0 +1,10 @@
'use strict';
/* eslint-env browser */
var inspect = require('../');
var d = document.createElement('div');
d.setAttribute('id', 'beep');
d.innerHTML = '<b>wooo</b><i>iiiii</i>';
console.log(inspect([d, { a: 3, b: 4, c: [5, 6, [7, [8, [9]]]] }]));