Estructura inicial del proyecto

This commit is contained in:
2026-06-02 16:57:08 +00:00
commit 8b306b9afc
9864 changed files with 1435687 additions and 0 deletions

31
backend/node_modules/mssql/lib/utils.js generated vendored Normal file
View File

@ -0,0 +1,31 @@
'use strict'
const IDS = new WeakMap()
const INCREMENT = {
Connection: 1,
ConnectionPool: 1,
Request: 1,
Transaction: 1,
PreparedStatement: 1
}
const getPoolId = (obj) => {
let parent = obj && obj.parent
while (parent && !parent.pool) {
parent = parent.parent
}
return parent ? IDS.get(parent) : undefined
}
module.exports = {
objectHasProperty: (object, property) => Object.prototype.hasOwnProperty.call(object, property),
INCREMENT,
IDS: {
get: IDS.get.bind(IDS),
add: (object, type, id) => {
if (id) return IDS.set(object, id)
IDS.set(object, INCREMENT[type]++)
}
},
getPoolId
}