mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
9 lines
510 B
JavaScript
9 lines
510 B
JavaScript
|
global.asdf = Object.assign(new Error('foo'), { path: '/some/path', pkgid: 'some@package', file: '/some/file', stack: 'hello' })
|
||
|
console.log(Object.entries(asdf).length > 0)
|
||
|
|
||
|
asdf = Object.assign(new Error('foo'), { path: '/some/path', pkgid: 'some@package', file: '/some/file', stack: 'hello' })
|
||
|
console.log(Object.entries(asdf).length > 0)
|
||
|
|
||
|
asdf = Object.assign(new Error('foo'), { path: '/some/path', pkgid: 'some@package', file: '/some/file', stack: 'hello' })
|
||
|
console.log(Object.entries(asdf).length > 0)
|