Modulo planilla v1
Some checks failed
build-and-push / build (push) Successful in 33s
build-and-push / deploy (push) Failing after 1s

This commit is contained in:
2025-05-02 17:59:47 -06:00
parent 76138f676d
commit e1dc751397
760 changed files with 82397 additions and 10 deletions

12
api/node_modules/object-inspect/test/undef.js generated vendored Normal file
View File

@@ -0,0 +1,12 @@
var test = require('tape');
var inspect = require('../');
var obj = { a: 1, b: [3, 4, undefined, null], c: undefined, d: null };
test('undef and null', function (t) {
t.plan(1);
t.equal(
inspect(obj),
'{ a: 1, b: [ 3, 4, undefined, null ], c: undefined, d: null }'
);
});