mirror of
https://github.com/JonasunderscoreJones/aka-worker.git
synced 2025-10-23 09:59:19 +02:00
7 lines
174 B
JavaScript
7 lines
174 B
JavaScript
'use strict';
|
|
const DatabaseInspection = function Database() {};
|
|
|
|
module.exports = function inspect(depth, opts) {
|
|
return Object.assign(new DatabaseInspection(), this);
|
|
};
|
|
|