blob: 9e1533a6da0d7649b3d14d2b073aef00b4645ffe (
plain)
1
2
3
4
5
6
|
const util = require("util");
const {search} = require("./init.js");
search("astolfo+images")
.then(obj => util.inspect(obj, {showHidden: false, depth: null, colors: true}))
.then(console.log)
|