first_commit
This commit is contained in:
22
GTA_P_V2/node_modules/loupe/lib/object.js
generated
vendored
Normal file
22
GTA_P_V2/node_modules/loupe/lib/object.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
import { inspectList, inspectProperty } from './helpers.js';
|
||||
export default function inspectObject(object, options) {
|
||||
const properties = Object.getOwnPropertyNames(object);
|
||||
const symbols = Object.getOwnPropertySymbols ? Object.getOwnPropertySymbols(object) : [];
|
||||
if (properties.length === 0 && symbols.length === 0) {
|
||||
return '{}';
|
||||
}
|
||||
options.truncate -= 4;
|
||||
options.seen = options.seen || [];
|
||||
if (options.seen.includes(object)) {
|
||||
return '[Circular]';
|
||||
}
|
||||
options.seen.push(object);
|
||||
const propertyContents = inspectList(properties.map(key => [key, object[key]]), options, inspectProperty);
|
||||
const symbolContents = inspectList(symbols.map(key => [key, object[key]]), options, inspectProperty);
|
||||
options.seen.pop();
|
||||
let sep = '';
|
||||
if (propertyContents && symbolContents) {
|
||||
sep = ', ';
|
||||
}
|
||||
return `{ ${propertyContents}${sep}${symbolContents} }`;
|
||||
}
|
||||
Reference in New Issue
Block a user