diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-04 23:32:31 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-04 23:32:31 +0100 |
commit | eb0525a4a87149652f5ec79b41dc43bf198b8bce (patch) | |
tree | 4e524e373ecaf7791919208094eb14f71a3896a9 /test.js | |
parent | 6bbc473641d3a551755abadb5383d423ad9b1694 (diff) | |
download | google_images-eb0525a4a87149652f5ec79b41dc43bf198b8bce.tar.xz |
Style changes
Diffstat (limited to 'test.js')
-rw-r--r-- | test.js | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2,5 +2,4 @@ const {search} = require("./init.js") const util = require("util") search("astolfo+images") - .then(obj => util.inspect(obj, {showHidden: false, depth: null, colors: true})) - .then(console.log) + .then(obj => console.log(util.inspect(obj, {showHidden: false, depth: null, colors: true}))) |