PATH:
usr
/
local
/
lib
/
node_modules
/
knex-migrator
/
node_modules
/
knex
/
lib
/
util
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = saveAsyncStack; function saveAsyncStack(instance, lines) { if (instance.client.config.asyncStackTraces) { // a hack to get a callstack into the client code despite this // node.js bug https://github.com/nodejs/node/issues/11865 const stackByLines = new Error().stack.split('\n'); stackByLines.splice(0, lines); instance._asyncStack = stackByLines; } } module.exports = exports.default;
[-] parse-connection.js
[edit]
[-] noop.js
[edit]
[+]
..
[-] fake-client.js
[edit]
[-] batchInsert.js
[edit]
[-] make-knex.js
[edit]
[-] save-async-stack.js
[edit]
[-] version-helper.js
[edit]